summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorJaysinh Shukla <jaysinhp@gmail.com>2018-06-14 07:05:35 (GMT)
committerVictor Stinner <vstinner@redhat.com>2018-06-14 07:05:35 (GMT)
commitdfa9643d292dcaa14cbf3c44b8330ba2159976c0 (patch)
treeebd86a514b88186122235126600c307e0733daeb /Lib/test/test_sundry.py
parentab4a1988fd4347484a7928394b94e2cdf5f8f2a7 (diff)
downloadcpython-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.py2
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: