diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-01-10 16:02:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-10 16:02:26 (GMT) |
commit | 1cbd17c6987afc48c16caa7ccc7d19b01fbd39f2 (patch) | |
tree | 53c5ad20a9c6b1e0e9c576fd19727a7563b52793 | |
parent | 2bd5f7e91add6a20c311d46c332c4325b1e77883 (diff) | |
download | cpython-1cbd17c6987afc48c16caa7ccc7d19b01fbd39f2.zip cpython-1cbd17c6987afc48c16caa7ccc7d19b01fbd39f2.tar.gz cpython-1cbd17c6987afc48c16caa7ccc7d19b01fbd39f2.tar.bz2 |
bpo-24746: Fix doctest failures when running the testsuite with -R (GH-11501)
(cherry picked from commit c5dc60ea858b8ccf78e8d26db81c307a8f9b2314)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
-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 6081009..4a3c488 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -2450,8 +2450,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. |