# HG changeset patch # User Yuya Nishihara # Date 1520341884 21600 # Node ID 4eb3bf227ce73c32ec3d7b10c86d030d29267610 # Parent 80da79b6fbe4f9ce4bee69847d16dc972d98330a py3: make test-bisect.t bytes-safe diff -r 80da79b6fbe4 -r 4eb3bf227ce7 contrib/python3-whitelist --- a/contrib/python3-whitelist Tue Mar 06 07:10:50 2018 -0600 +++ b/contrib/python3-whitelist Tue Mar 06 07:11:24 2018 -0600 @@ -16,6 +16,7 @@ test-backwards-remove.t test-basic.t test-bheads.t +test-bisect.t test-bisect2.t test-blackbox.t test-bookmarks-current.t diff -r 80da79b6fbe4 -r 4eb3bf227ce7 tests/test-bisect.t --- a/tests/test-bisect.t Tue Mar 06 07:10:50 2018 -0600 +++ b/tests/test-bisect.t Tue Mar 06 07:11:24 2018 -0600 @@ -465,8 +465,8 @@ > from __future__ import absolute_import > import sys > from mercurial import hg, ui as uimod - > repo = hg.repository(uimod.ui.load(), '.') - > if repo['.'].rev() < 6: + > repo = hg.repository(uimod.ui.load(), b'.') + > if repo[b'.'].rev() < 6: > sys.exit(1) > EOF $ chmod +x script.py