diff options
author | Jaysinh Shukla <jaysinhp@gmail.com> | 2018-06-14 07:05:35 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-06-14 07:05:35 (GMT) |
commit | dfa9643d292dcaa14cbf3c44b8330ba2159976c0 (patch) | |
tree | ebd86a514b88186122235126600c307e0733daeb /Lib/test/test_sundry.py | |
parent | ab4a1988fd4347484a7928394b94e2cdf5f8f2a7 (diff) | |
download | cpython-dfa9643d292dcaa14cbf3c44b8330ba2159976c0.zip cpython-dfa9643d292dcaa14cbf3c44b8330ba2159976c0.tar.gz cpython-dfa9643d292dcaa14cbf3c44b8330ba2159976c0.tar.bz2 |
bpo-19382: Adding test cases for module tabnanny (GH-851)
Testing strategy: whitebox.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 4025c23..6e36a61 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -6,7 +6,7 @@ import unittest class TestUntestedModules(unittest.TestCase): def test_untested_modules_can_be_imported(self): - untested = ('encodings', 'formatter', 'tabnanny') + untested = ('encodings', 'formatter') with support.check_warnings(quiet=True): for name in untested: try: |