[Python-checkins] r61382 - python/trunk/Lib/test/test_gdbm.py
brett.cannon
python-checkins at python.org
Fri Mar 14 15:03:10 CET 2008
Author: brett.cannon
Date: Fri Mar 14 15:03:10 2008
New Revision: 61382
Modified:
python/trunk/Lib/test/test_gdbm.py
Log:
Remove a bad test.
Modified: python/trunk/Lib/test/test_gdbm.py
==============================================================================
--- python/trunk/Lib/test/test_gdbm.py (original)
+++ python/trunk/Lib/test/test_gdbm.py Fri Mar 14 15:03:10 2008
@@ -35,7 +35,6 @@
# 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()
More information about the Python-checkins
mailing list