##// END OF EJS Templates
py3: add b'' prefix in test/test-fileset.t...
Pulkit Goyal -
r38092:8fa2b5c8 default
parent child Browse files
Show More
@@ -434,7 +434,7 b" Test detection of unintentional 'matchct"
434 > from mercurial import registrar
434 > from mercurial import registrar
435 >
435 >
436 > filesetpredicate = registrar.filesetpredicate()
436 > filesetpredicate = registrar.filesetpredicate()
437 > @filesetpredicate('existingcaller()', callexisting=False)
437 > @filesetpredicate(b'existingcaller()', callexisting=False)
438 > def existingcaller(mctx, x):
438 > def existingcaller(mctx, x):
439 > # this 'mctx.existing()' invocation is unintentional
439 > # this 'mctx.existing()' invocation is unintentional
440 > return [f for f in mctx.existing()]
440 > return [f for f in mctx.existing()]
General Comments 0
You need to be logged in to leave comments. Login now