diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-19 15:54:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-19 15:54:25 (GMT) |
commit | f2abf5c11a98bc341add7a695757564a186a45d6 (patch) | |
tree | 9589e43a37c29e32b1ae2823fdb73b5991638987 /Lib/test/test_regrtest.py | |
parent | 59e9ca6bdab845a2a2ac3f8c58a4e8ba8e239440 (diff) | |
download | cpython-f2abf5c11a98bc341add7a695757564a186a45d6.zip cpython-f2abf5c11a98bc341add7a695757564a186a45d6.tar.gz cpython-f2abf5c11a98bc341add7a695757564a186a45d6.tar.bz2 |
regrtest: replace "Result:" with "Tests result:"
Diffstat (limited to 'Lib/test/test_regrtest.py')
-rw-r--r-- | Lib/test/test_regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |