summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorxdegaye <xdegaye@gmail.com>2018-03-18 20:02:47 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-03-18 20:02:47 (GMT)
commit3fe33043ee83d19e15551094fc1e0984617ded3c (patch)
tree55f40b35394a03113fcbd2594fc0ea7d78eac7fc /Lib/test/test_sundry.py
parentf64aae46da292f71f6be750026cd052362e066bc (diff)
downloadcpython-3fe33043ee83d19e15551094fc1e0984617ded3c.zip
cpython-3fe33043ee83d19e15551094fc1e0984617ded3c.tar.gz
cpython-3fe33043ee83d19e15551094fc1e0984617ded3c.tar.bz2
bpo-19417: Add test_bdb.py (GH-5217)
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 dddf326..4025c23 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', 'tabnanny')
+ untested = ('encodings', 'formatter', 'tabnanny')
with support.check_warnings(quiet=True):
for name in untested:
try: