tests/test-hgrc.t
changeset 38073 1a09886ab03a
parent 37435 0c1b895511b9
child 39707 5abc47d4ca6b
--- 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