# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1519385237 -19800 # Node ID f798709eb4b9de2a1f7ad720b1dc4dfd1d4c31b7 # Parent f0c94af0d70d4aa7b95c8d1b6f4cf05b4331d910 py3: add b'' prefixes in test-abort-checkin.t # skip-blame because we just added a b'' prefix. diff -r f0c94af0d70d -r f798709eb4b9 tests/test-abort-checkin.t --- a/tests/test-abort-checkin.t Wed Feb 21 23:43:23 2018 +0530 +++ b/tests/test-abort-checkin.t Fri Feb 23 16:57:17 2018 +0530 @@ -1,9 +1,9 @@ $ cat > abortcommit.py < from mercurial import error > def hook(**args): - > raise error.Abort("no commits allowed") + > raise error.Abort(b"no commits allowed") > def reposetup(ui, repo): - > repo.ui.setconfig("hooks", "pretxncommit.nocommits", hook) + > repo.ui.setconfig(b"hooks", b"pretxncommit.nocommits", hook) > EOF $ abspath=`pwd`/abortcommit.py