D6662: py3: add a b'' prefix in tests/test-convert-identity.t
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sat Jul 20 18:24:37 UTC 2019
martinvonz created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D6662
AFFECTED FILES
tests/test-convert-identity.t
CHANGE DETAILS
diff --git a/tests/test-convert-identity.t b/tests/test-convert-identity.t
--- a/tests/test-convert-identity.t
+++ b/tests/test-convert-identity.t
@@ -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
To: martinvonz, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list