Mercurial > hg-stable
changeset 38114:8fa2b5c85a46
py3: add b'' prefix in test/test-fileset.t
# skip-blame because just a b'' prefix
Differential Revision: https://phab.mercurial-scm.org/D3605
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sat, 19 May 2018 18:45:53 +0530 |
parents | 0a10f142299d |
children | 1978abdb216c |
files | tests/test-fileset.t |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-fileset.t Sat May 19 18:43:13 2018 +0530 +++ b/tests/test-fileset.t Sat May 19 18:45:53 2018 +0530 @@ -434,7 +434,7 @@ > 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()]