tests/flagprocessorext.py
changeset 42749 6d61be152c55
parent 42747 92ac6b1697a7
child 42987 bd5858c28bbe
--- a/tests/flagprocessorext.py	Thu Aug 08 01:25:37 2019 +0200
+++ b/tests/flagprocessorext.py	Thu Aug 08 01:59:43 2019 +0200
@@ -113,7 +113,7 @@
         exchange._bundlespeccontentopts[k][b"cg.version"] = b"03"
 
     # Register flag processors for each extension
-    revlog.addflagprocessor(
+    flagutil.addflagprocessor(
         REVIDX_NOOP,
         (
             noopdonothing,
@@ -121,7 +121,7 @@
             validatehash,
         )
     )
-    revlog.addflagprocessor(
+    flagutil.addflagprocessor(
         REVIDX_BASE64,
         (
             b64decode,
@@ -129,7 +129,7 @@
             bypass,
         ),
     )
-    revlog.addflagprocessor(
+    flagutil.addflagprocessor(
         REVIDX_GZIP,
         (
             gzipdecompress,