diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-07-01 09:17:45 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-07-01 09:17:45 (GMT) |
commit | a9e1ebb780b971079f5b43813426261bd69baf5d (patch) | |
tree | 524418792b06f76b911febbb241897869d1dc20b /Lib/unittest | |
parent | e807e892ed0b8398f62351f204cae6b35d4f0510 (diff) | |
parent | e39682b0768bcf06d3c0d8480dd2f98824afafe6 (diff) | |
download | cpython-a9e1ebb780b971079f5b43813426261bd69baf5d.zip cpython-a9e1ebb780b971079f5b43813426261bd69baf5d.tar.gz cpython-a9e1ebb780b971079f5b43813426261bd69baf5d.tar.bz2 |
Issue #27430: Merge from 3.5
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/test/test_case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py index 1fb95dc..8f752b8 100644 --- a/Lib/unittest/test/test_case.py +++ b/Lib/unittest/test/test_case.py @@ -339,7 +339,7 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing): self._check_call_order__subtests(result, events, expected) def test_run_call_order__subtests_legacy(self): - # With a legacy result object (without a addSubTest method), + # With a legacy result object (without an addSubTest method), # text execution stops after the first subtest failure. events = [] result = LegacyLoggingResult(events) |