# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 2018-05-19 13:15:53 # Node ID 8fa2b5c85a46714d4cdc2ef93929735882e98cc6 # Parent 0a10f142299df752eb1bda1155adc9e838be396a py3: add b'' prefix in test/test-fileset.t # skip-blame because just a b'' prefix Differential Revision: https://phab.mercurial-scm.org/D3605 diff --git a/tests/test-fileset.t b/tests/test-fileset.t --- a/tests/test-fileset.t +++ b/tests/test-fileset.t @@ -434,7 +434,7 @@ Test detection of unintentional 'matchct > from mercurial import registrar > > filesetpredicate = registrar.filesetpredicate() - > @filesetpredicate('existingcaller()', callexisting=False) + > @filesetpredicate(b'existingcaller()', callexisting=False) > def existingcaller(mctx, x): > # this 'mctx.existing()' invocation is unintentional > return [f for f in mctx.existing()]