diff --git a/python/subunit/filter_scripts/subunit2pyunit.py b/python/subunit/filter_scripts/subunit2pyunit.py index f1414b5..57b5bd6 100755 --- a/python/subunit/filter_scripts/subunit2pyunit.py +++ b/python/subunit/filter_scripts/subunit2pyunit.py @@ -38,7 +38,7 @@ def main(): dest="no_passthrough", ) parser.add_option( - "--progress", action="store_true", help="Use bzrlib's test reporter (requires bzrlib)", default=False + "--progress", action="store_true", help="Use breezy 's test reporter (requires breezy)", default=False ) (options, args) = parser.parse_args() test = ByteStreamToStreamResult(find_stream(sys.stdin, args), non_subunit_name="stdout") @@ -54,8 +54,8 @@ def wrap_result(result): test, wrap_result, before_run=methodcaller("startTestRun"), after_run=methodcaller("stopTestRun") ) if options.progress: - from bzrlib import ui - from bzrlib.tests import TextTestRunner + from breezy import ui + from breezy.tests import TextTestRunner ui.ui_factory = ui.make_ui_for_terminal(None, sys.stdout, sys.stderr) runner = TextTestRunner()