py3: add a b'' prefix in tests/test-convert-identity.t
Differential Revision: https://phab.mercurial-scm.org/D6662
--- 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