diff --git a/tests/test-hgrc.t b/tests/test-hgrc.t --- a/tests/test-hgrc.t +++ b/tests/test-hgrc.t @@ -199,10 +199,10 @@ $ cat > plain.py < 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