changeset 42880:38c62272f462

simplestorerepo: stop using `_processflags` directly We now use the specialized versions. Differential Revision: https://phab.mercurial-scm.org/D6805
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 02 Sep 2019 17:06:15 +0200
parents 4a3efe0febb5
children 519b45603880
files tests/simplestorerepo.py
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)