summaryrefslogtreecommitdiff
path: root/Lib/test/test_gdbm.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-03-14 14:03:10 +0000
committerBrett Cannon <bcannon@gmail.com>2008-03-14 14:03:10 +0000
commit6119540d70ef1ad7ff6ad6940f185cc972164494 (patch)
treec6a8426f627f65cbdb92ed64c5d795001b4b543a /Lib/test/test_gdbm.py
parent7bae4432a3b82edd7598f850670bfbdd097f439e (diff)
downloadcpython-git-6119540d70ef1ad7ff6ad6940f185cc972164494.tar.gz
Remove a bad test.
Diffstat (limited to 'Lib/test/test_gdbm.py')
-rwxr-xr-xLib/test/test_gdbm.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_gdbm.py b/Lib/test/test_gdbm.py
index bb49ffe2b2..76689f0695 100755
--- a/Lib/test/test_gdbm.py
+++ b/Lib/test/test_gdbm.py
@@ -35,7 +35,6 @@ class TestGdbm(unittest.TestCase):
# Try to open a non-existent database.
unlink(filename)
self.assertRaises(gdbm.error, gdbm.open, filename, 'r')
- self.assertRaises(gdbm.error, gdbm.open, filename, 'w')
# Try to access a closed database.
self.g = gdbm.open(filename, 'c')
self.g.close()