py3: add b'' prefixes in tests/test-hgrc.t
# skip-blame because just b'' prefixes
Differential Revision: https://phab.mercurial-scm.org/D3597
--- a/tests/test-hgrc.t Sat May 19 18:28:52 2018 +0530
+++ b/tests/test-hgrc.t Sat May 19 18:30:20 2018 +0530
@@ -199,10 +199,10 @@
$ cat > plain.py <<EOF
> from mercurial import commands, extensions
> def _config(orig, ui, repo, *values, **opts):
- > ui.write('plain: %r\n' % ui.plain())
+ > ui.write(b'plain: %r\n' % ui.plain())
> return orig(ui, repo, *values, **opts)
> def uisetup(ui):
- > extensions.wrapcommand(commands.table, 'config', _config)
+ > extensions.wrapcommand(commands.table, b'config', _config)
> EOF
$ echo "[extensions]" >> $HGRC
$ echo "plain=./plain.py" >> $HGRC