diff tests/simplestorerepo.py @ 42994:dff95420480f

flagprocessors: make `processflagsraw` a module level function One more steps toward removing the mixin. Differential Revision: https://phab.mercurial-scm.org/D6820
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 07 Sep 2019 00:16:32 +0200
parents eb5048f8c533
children 73288e7abe9b
line wrap: on
line diff
--- a/tests/simplestorerepo.py	Sat Sep 07 00:11:58 2019 +0200
+++ b/tests/simplestorerepo.py	Sat Sep 07 00:16:32 2019 +0200
@@ -291,7 +291,7 @@
         rawtext = self._svfs.read(path)
 
         if raw:
-            validatehash = self._processflagsraw(rawtext, flags)
+            validatehash = flagutil.processflagsraw(self, rawtext, flags)
             text = rawtext
         else:
             r = flagutil.processflagsread(self, rawtext, flags)