diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-01-10 14:29:40 (GMT) |
---|---|---|
committer | Senthil Kumaran <skumaran@gatech.edu> | 2019-01-10 14:29:40 (GMT) |
commit | c5dc60ea858b8ccf78e8d26db81c307a8f9b2314 (patch) | |
tree | 21f883eea5d53402de3d1617146438fc47098cf4 | |
parent | fb2c3465f09e1f720cdae7eca87d62125a327fd9 (diff) | |
download | cpython-c5dc60ea858b8ccf78e8d26db81c307a8f9b2314.zip cpython-c5dc60ea858b8ccf78e8d26db81c307a8f9b2314.tar.gz cpython-c5dc60ea858b8ccf78e8d26db81c307a8f9b2314.tar.bz2 |
bpo-24746: Fix doctest failures when running the testsuite with -R (#11501)
-rw-r--r-- | Lib/test/test_doctest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index c40c389..f1013f2 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2451,8 +2451,7 @@ def test_unittest_reportflags(): Then the default eporting options are ignored: >>> result = suite.run(unittest.TestResult()) - """ - """ + *NOTE*: These doctest are intentionally not placed in raw string to depict the trailing whitespace using `\x20` in the diff below. |