py3: add missing b'' in test-arbitraryfilectx.t
authorPulkit Goyal <7895pulkit@gmail.com>
Fri, 23 Feb 2018 18:12:20 +0530
changeset 36382 b4d1c09b754b
parent 36381 2827fa74adbc
child 36383 24b481668293
py3: add missing b'' in test-arbitraryfilectx.t # skip-blame as just b'' prefix
tests/test-arbitraryfilectx.t
--- a/tests/test-arbitraryfilectx.t	Fri Feb 23 18:04:33 2018 +0530
+++ b/tests/test-arbitraryfilectx.t	Fri Feb 23 18:12:20 2018 +0530
@@ -5,7 +5,7 @@
   > from mercurial import commands, context, registrar
   > cmdtable = {}
   > command = registrar.command(cmdtable)
-  > @command(b'eval', [], 'hg eval CMD')
+  > @command(b'eval', [], b'hg eval CMD')
   > def eval_(ui, repo, *cmds, **opts):
   >     cmd = b" ".join(cmds)
   >     res = str(eval(cmd, globals(), locals()))