diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py index 78c52bd48a3..b9d7ab4de0b 100644 --- a/Lib/test/libregrtest/main.py +++ b/Lib/test/libregrtest/main.py @@ -437,7 +437,7 @@ def finalize(self): result = "INTERRUPTED" else: result = "SUCCESS" - print("Result: %s" % result) + print("Tests result: %s" % result) if self.ns.runleaks: os.system("leaks %d" % os.getpid()) diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 40862e65894..dc154616b6d 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -407,7 +407,7 @@ def list_regex(line_format, tests): result = 'INTERRUPTED' else: result = 'SUCCESS' - self.check_line(output, 'Result: %s' % result) + self.check_line(output, 'Tests result: %s' % result) def parse_random_seed(self, output): match = self.regex_search(r'Using random seed ([0-9]+)', output)