summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-03-14 14:03:10 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-03-14 14:03:10 (GMT)
commit6119540d70ef1ad7ff6ad6940f185cc972164494 (patch)
treec6a8426f627f65cbdb92ed64c5d795001b4b543a /Lib/test
parent7bae4432a3b82edd7598f850670bfbdd097f439e (diff)
downloadcpython-6119540d70ef1ad7ff6ad6940f185cc972164494.zip
cpython-6119540d70ef1ad7ff6ad6940f185cc972164494.tar.gz
cpython-6119540d70ef1ad7ff6ad6940f185cc972164494.tar.bz2
Remove a bad test.
Diffstat (limited to 'Lib/test')
-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 bb49ffe..76689f0 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()