tests/testlib/ext-sidedata-3.py
changeset 47073 64cd1496bb70
parent 46718 ba8e508a8e69
child 47078 223b47235d1c
--- a/tests/testlib/ext-sidedata-3.py	Tue Apr 06 05:20:24 2021 +0200
+++ b/tests/testlib/ext-sidedata-3.py	Thu Apr 08 19:00:21 2021 +0200
@@ -20,6 +20,7 @@
 )
 
 from mercurial.revlogutils import sidedata as sidedatamod
+from mercurial.revlogutils import constants
 
 
 def compute_sidedata_1(repo, revlog, rev, sidedata, text=None):
@@ -65,7 +66,7 @@
 
 def reposetup(ui, repo):
     # Sidedata keys happen to be the same as the categories, easier for testing.
-    for kind in (b'changelog', b'manifest', b'filelog'):
+    for kind in constants.ALL_KINDS:
         repo.register_sidedata_computer(
             kind,
             sidedatamod.SD_TEST1,