Skip to content
Snippets Groups Projects
Commit a2c02877 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

py3: add a b'' prefix in tests/test-convert-identity.t

Differential Revision: https://phab.mercurial-scm.org/D6662
parent 24111fb9
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment