##// END OF EJS Templates
py3: make test-basic.t pass on Python 3
Yuya Nishihara -
r36656:159b04de default
parent child Browse files
Show More
@@ -8,6 +8,7 b' test-annotate.py'
8 8 test-automv.t
9 9 test-backout.t
10 10 test-backwards-remove.t
11 test-basic.t
11 12 test-bheads.t
12 13 test-bisect2.t
13 14 test-bookmarks-current.t
@@ -59,7 +59,7 b' Verify that updating to revision 0 via c'
59 59 $ cat <<EOF > update_to_rev0.py
60 60 > from mercurial import ui, hg, commands
61 61 > myui = ui.ui.load()
62 > repo = hg.repository(myui, path='.')
62 > repo = hg.repository(myui, path=b'.')
63 63 > commands.update(myui, repo, rev=0)
64 64 > EOF
65 65 $ hg up null
General Comments 0
You need to be logged in to leave comments. Login now