diff -r 36a0a1951d64 -r f4caf910669e tests/test-revlog-raw.py --- a/tests/test-revlog-raw.py Tue Sep 03 23:51:17 2019 +0200 +++ b/tests/test-revlog-raw.py Wed Sep 04 00:53:27 2019 +0200 @@ -47,7 +47,7 @@ text = rawtext[len(_extheader):].replace(b'i', b'1') return text, True, {} -def writeprocessor(self, text): +def writeprocessor(self, text, sidedata): # False: the returned rawtext shouldn't be used to verify hash rawtext = _extheader + text.replace(b'1', b'i') return rawtext, False @@ -262,7 +262,7 @@ # Verify text, rawtext, and rawsize if isext: - rawtext = writeprocessor(None, text)[0] + rawtext = writeprocessor(None, text, {})[0] else: rawtext = text if rlog.rawsize(rev) != len(rawtext):