# HG changeset patch # User Yuya Nishihara # Date 2018-03-04 21:50:35 # Node ID 70a98c3fba2a819e911dc3d7811df06281d92dbf # Parent 2a50241094901b1416615819dc74d32751f86c50 py3: make blackbox-readonly-dispatch.py use ui instead of print() diff --git a/tests/blackbox-readonly-dispatch.py b/tests/blackbox-readonly-dispatch.py --- a/tests/blackbox-readonly-dispatch.py +++ b/tests/blackbox-readonly-dispatch.py @@ -1,7 +1,8 @@ -from __future__ import absolute_import, print_function +from __future__ import absolute_import import os from mercurial import ( dispatch, + ui as uimod, ) def testdispatch(cmd): @@ -9,10 +10,11 @@ def testdispatch(cmd): Prints command and result value, but does not handle quoting. """ - print("running: %s" % (cmd,)) - req = dispatch.request(cmd.split()) + ui = uimod.ui.load() + ui.status("running: %s\n" % cmd) + req = dispatch.request(cmd.split(), ui) result = dispatch.dispatch(req) - print("result: %r" % (result,)) + ui.status("result: %r\n" % result) # create file 'foo', add and commit f = open('foo', 'wb')