# HG changeset patch # User Martin von Zweigbergk # Date 1563645889 25200 # Node ID a2c02877b0974e04c40699cfa6fe73ea99e01abd # Parent 24111fb9a725dea2bb52d7c2bae8b4900d168a92 py3: add a b'' prefix in tests/test-convert-identity.t Differential Revision: https://phab.mercurial-scm.org/D6662 diff -r 24111fb9a725 -r a2c02877b097 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