diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 21:52:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-26 21:52:57 (GMT) |
commit | 62a85b54a3c6819b41a23443242974935cc23a89 (patch) | |
tree | 5a69e1ab4ff31c2aa28fb8a823f83c74275892da /Lib/test/test_sundry.py | |
parent | e6994ff6e341d049ca974d88f14ad608f5cf7a64 (diff) | |
parent | 1ac00950b28e91fc35fed6445722ade92732648e (diff) | |
download | cpython-62a85b54a3c6819b41a23443242974935cc23a89.zip cpython-62a85b54a3c6819b41a23443242974935cc23a89.tar.gz cpython-62a85b54a3c6819b41a23443242974935cc23a89.tar.bz2 |
Issue #19990: Added tests for the imghdr module.
Based on patch by Claudiu Popa.
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 2da3ac0..e99ca9e 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 = ('bdb', 'encodings', 'formatter', 'imghdr', + untested = ('bdb', 'encodings', 'formatter', 'nturl2path', 'tabnanny') with support.check_warnings(quiet=True): for name in untested: |