# HG changeset patch # User Pulkit Goyal # Date 2019-06-05 19:09:26 # Node ID 5b217451a2c206fa931770f145bdc346f69a646d # Parent 6ed04139ed379359a8f2031a0088b8bc9016cc88 py3: fix test-bookmarks-corner-case.t For some reasons, the output of print was not going through. Replaced that ui.status(). Differential Revision: https://phab.mercurial-scm.org/D6481 diff --git a/contrib/python3-whitelist b/contrib/python3-whitelist --- a/contrib/python3-whitelist +++ b/contrib/python3-whitelist @@ -36,6 +36,7 @@ test-bisect2.t test-bisect3.t test-blackbox.t test-bookflow.t +test-bookmarks-corner-case.t test-bookmarks-current.t test-bookmarks-merge.t test-bookmarks-pushpull.t diff --git a/tests/test-bookmarks-corner-case.t b/tests/test-bookmarks-corner-case.t --- a/tests/test-bookmarks-corner-case.t +++ b/tests/test-bookmarks-corner-case.t @@ -122,7 +122,7 @@ We build a server side extension for thi > from mercurial import bookmarks, error, extensions > def wrapinit(orig, self, repo): > if not os.path.exists('push-A-started'): - > print('setting raced push up') + > repo.ui.status(b'setting raced push up\n') > with open('push-A-started', 'w'): > pass > clock = 300