Mercurial > public > mercurial-scm > hg-stable
diff tests/test-help.t @ 33747:24849d53697d
tests: clean up many print statements to be print functions instead
Differential Revision: https://phab.mercurial-scm.org/D294
author | Augie Fackler <augie@google.com> |
---|---|
date | Thu, 15 Jun 2017 14:22:25 -0400 |
parents | 3cfabb6cfd51 |
children | dc95caa1ec0d |
line wrap: on
line diff
--- a/tests/test-help.t Thu Jun 15 13:32:32 2017 -0400 +++ b/tests/test-help.t Thu Jun 15 14:22:25 2017 -0400 @@ -1709,7 +1709,7 @@ $ $PYTHON <<EOF | sh > upper = "\x8bL\x98^" - > print "hg --encoding cp932 help -e ambiguous.%s" % upper + > print("hg --encoding cp932 help -e ambiguous.%s" % upper) > EOF \x8bL\x98^ (esc) ---- @@ -1719,7 +1719,7 @@ $ $PYTHON <<EOF | sh > lower = "\x8bl\x98^" - > print "hg --encoding cp932 help -e ambiguous.%s" % lower + > print("hg --encoding cp932 help -e ambiguous.%s" % lower) > EOF \x8bl\x98^ (esc) ----