py3: add a b'' prefix in tests/test-convert-identity.t
authorMartin von Zweigbergk <martinvonz@google.com>
Sat, 20 Jul 2019 11:04:49 -0700
changeset 42630 a2c02877b097
parent 42629 24111fb9a725
child 42631 24f0023bb8b1
py3: add a b'' prefix in tests/test-convert-identity.t Differential Revision: https://phab.mercurial-scm.org/D6662
tests/test-convert-identity.t
--- a/tests/test-convert-identity.t	Fri Jul 19 09:43:50 2019 -0700
+++ b/tests/test-convert-identity.t	Sat Jul 20 11:04:49 2019 -0700
@@ -10,7 +10,7 @@
   $ cat <<'EOF' > changefileslist.py
   > from mercurial import (changelog, extensions)
   > def wrap(orig, clog, manifest, files, *args, **kwargs):
-  >   return orig(clog, manifest, ["a"], *args, **kwargs)
+  >   return orig(clog, manifest, [b"a"], *args, **kwargs)
   > def extsetup(ui):
   >   extensions.wrapfunction(changelog.changelog, 'add', wrap)
   > EOF