simplestorerepo: stop using `_processflags` directly
We now use the specialized versions.
Differential Revision: https://phab.mercurial-scm.org/D6805
--- a/tests/simplestorerepo.py Mon Sep 02 17:05:52 2019 +0200
+++ b/tests/simplestorerepo.py Mon Sep 02 17:06:15 2019 +0200
@@ -290,7 +290,11 @@
path = b'/'.join([self._storepath, hex(node)])
rawtext = self._svfs.read(path)
- text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw)
+ if raw:
+ validatehash = self._processflagsraw(rawtext, flags)
+ text = rawtext
+ else:
+ text, validatehash = self._processflagsread(rawtext, flags)
if validatehash:
self.checkhash(text, node, rev=rev)