tests/test-pager-legacy.t
changeset 38362 e53879421ecd
parent 34918 274811627808
child 39707 5abc47d4ca6b
--- a/tests/test-pager-legacy.t	Thu Jun 14 15:17:47 2018 -0700
+++ b/tests/test-pager-legacy.t	Mon Jun 18 15:23:25 2018 +0530
@@ -247,9 +247,9 @@
   > from mercurial import registrar, commands
   > cmdtable = {}
   > command = registrar.command(cmdtable)
-  > @command(b'fortytwo', [], 'fortytwo', norepo=True)
+  > @command(b'fortytwo', [], b'fortytwo', norepo=True)
   > def fortytwo(ui, *opts):
-  >     ui.write('42\n')
+  >     ui.write(b'42\n')
   >     return 42
   > EOF