Mercurial > hg
changeset 38125:6ef01102ebff
py3: add b'' prefixes in tests/test-revset2.t
# skip-blame because just b'' prefixes
Differential Revision: https://phab.mercurial-scm.org/D3637
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Sun, 20 May 2018 18:53:03 +0530 |
parents | 282f3daac1d7 |
children | bdc4079ceb16 |
files | tests/test-revset2.t |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-revset2.t Mon May 21 23:26:53 2018 +0530 +++ b/tests/test-revset2.t Sun May 20 18:53:03 2018 +0530 @@ -1589,11 +1589,11 @@ > > revsetpredicate = registrar.revsetpredicate() > - > @revsetpredicate('custom1()') + > @revsetpredicate(b'custom1()') > def custom1(repo, subset, x): > return revset.baseset([1]) > - > raise error.Abort('intentional failure of loading extension') + > raise error.Abort(b'intentional failure of loading extension') > EOF $ cat <<EOF > .hg/hgrc > [extensions] @@ -1611,14 +1611,14 @@ > from mercurial import encoding, registrar > cmdtable = {} > command = registrar.command(cmdtable) - > @command('printprevset') + > @command(b'printprevset') > def printprevset(ui, repo): > alias = {} - > p = encoding.environ.get('P') + > p = encoding.environ.get(b'P') > if p: - > alias['P'] = p - > revs = repo.anyrevs(['P'], user=True, localalias=alias) - > ui.write('P=%r\n' % list(revs)) + > alias[b'P'] = p + > revs = repo.anyrevs([b'P'], user=True, localalias=alias) + > ui.write(b'P=%r\n' % list(revs)) > EOF $ cat >> .hg/hgrc <<EOF