diff options
author | Jim Fasarakis-Hilliard <d.f.hilliard@gmail.com> | 2017-03-17 20:16:20 +0200 |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-03-17 11:16:20 -0700 |
commit | cb5297a9e6b51c736ab8564b1a123577ba0dd2ad (patch) | |
tree | fb6da1bebbfd911c70e6a1f24d8a9fd87619cede /Lib/test/test_sundry.py | |
parent | 1b038e073807ecb6fd176edaf3386a8e3205416e (diff) | |
download | cpython-git-cb5297a9e6b51c736ab8564b1a123577ba0dd2ad.tar.gz |
bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694)
The module is implicitly tested through test_urllib.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 1fb9964698..dddf326552 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -6,8 +6,7 @@ import unittest class TestUntestedModules(unittest.TestCase): def test_untested_modules_can_be_imported(self): - untested = ('bdb', 'encodings', 'formatter', - 'nturl2path', 'tabnanny') + untested = ('bdb', 'encodings', 'formatter', 'tabnanny') with support.check_warnings(quiet=True): for name in untested: try: |