summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()