From f2abf5c11a98bc341add7a695757564a186a45d6 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 19 Aug 2016 17:54:25 +0200 Subject: regrtest: replace "Result:" with "Tests result:" --- Lib/test/libregrtest/main.py | 2 +- Lib/test/test_regrtest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py index 78c52bd..b9d7ab4 100644 --- a/Lib/test/libregrtest/main.py +++ b/Lib/test/libregrtest/main.py @@ -437,7 +437,7 @@ class Regrtest: 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 40862e6..dc15461 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -407,7 +407,7 @@ class BaseTestCase(unittest.TestCase): 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) -- cgit v0.12