tests/test-logtoprocess.t
changeset 40621 175b590b1f51
parent 40402 106adc261492
child 40622 d2c997b8001f
--- a/tests/test-logtoprocess.t	Sun Nov 11 12:33:14 2018 +0900
+++ b/tests/test-logtoprocess.t	Sun Nov 11 12:35:38 2018 +0900
@@ -14,12 +14,12 @@
   > command = registrar.command(cmdtable)
   > configtable = {}
   > configitem = registrar.configitem(configtable)
-  > configitem('logtoprocess', 'foo',
+  > configitem(b'logtoprocess', b'foo',
   >     default=None,
   > )
   > @command(b'foobar', [])
   > def foo(ui, repo):
-  >     ui.log('foo', 'a message: %s\n', 'spam')
+  >     ui.log(b'foo', b'a message: %s\n', b'spam')
   > EOF
   $ cp $HGRCPATH $HGRCPATH.bak
   $ cat >> $HGRCPATH << EOF