diff -r 4c041c71ec01 -r 64cd1496bb70 tests/testlib/ext-sidedata-3.py --- 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,