##// END OF EJS Templates
tests: byteify a few more things in simplestorerepo.py...
Matt Harbison -
r44132:8ca92bcb default
parent child Browse files
Show More
@@ -48,9 +48,9 b' from mercurial.revlogutils import flagut'
48 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
48 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
49 # be specifying the version(s) of Mercurial they are tested with, or
49 # be specifying the version(s) of Mercurial they are tested with, or
50 # leave the attribute unspecified.
50 # leave the attribute unspecified.
51 testedwith = 'ships-with-hg-core'
51 testedwith = b'ships-with-hg-core'
52
52
53 REQUIREMENT = 'testonly-simplestore'
53 REQUIREMENT = b'testonly-simplestore'
54
54
55
55
56 def validatenode(node):
56 def validatenode(node):
@@ -204,7 +204,7 b' class filestorage(object):'
204 if entry[b'node'] == node:
204 if entry[b'node'] == node:
205 return rev
205 return rev
206
206
207 raise error.ProgrammingError('this should not occur')
207 raise error.ProgrammingError(b'this should not occur')
208
208
209 def node(self, rev):
209 def node(self, rev):
210 validaterev(rev)
210 validaterev(rev)
General Comments 0
You need to be logged in to leave comments. Login now