diff -r 27fb986e54d0 -r 24849d53697d tests/test-help.t --- 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 < 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 < 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) ----