diff -r 5109217a9ab6 -r 6d61be152c55 tests/flagprocessorext.py --- 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,