##// END OF EJS Templates
py3: make test-bisect.t bytes-safe
Yuya Nishihara -
r36847:4eb3bf22 default
parent child Browse files
Show More
@@ -16,6 +16,7 b' test-backout.t'
16 16 test-backwards-remove.t
17 17 test-basic.t
18 18 test-bheads.t
19 test-bisect.t
19 20 test-bisect2.t
20 21 test-blackbox.t
21 22 test-bookmarks-current.t
@@ -465,8 +465,8 b' test bisecting command'
465 465 > from __future__ import absolute_import
466 466 > import sys
467 467 > from mercurial import hg, ui as uimod
468 > repo = hg.repository(uimod.ui.load(), '.')
469 > if repo['.'].rev() < 6:
468 > repo = hg.repository(uimod.ui.load(), b'.')
469 > if repo[b'.'].rev() < 6:
470 470 > sys.exit(1)
471 471 > EOF
472 472 $ chmod +x script.py
General Comments 0
You need to be logged in to leave comments. Login now