[Python-checkins] r77733 - python/trunk/Lib/bsddb/test/test_misc.py

ezio.melotti python-checkins at python.org
Sun Jan 24 22:47:59 CET 2010


Author: ezio.melotti
Date: Sun Jan 24 22:47:59 2010
New Revision: 77733

Log:
#7269: fix failures in test_bsddb3. Patch by Florent Xicluna.

Modified:
   python/trunk/Lib/bsddb/test/test_misc.py

Modified: python/trunk/Lib/bsddb/test/test_misc.py
==============================================================================
--- python/trunk/Lib/bsddb/test/test_misc.py	(original)
+++ python/trunk/Lib/bsddb/test/test_misc.py	Sun Jan 24 22:47:59 2010
@@ -10,7 +10,7 @@
 
 class MiscTestCase(unittest.TestCase):
     def setUp(self):
-        self.filename = self.__class__.__name__ + '.db'
+        self.filename = get_new_database_path()
         self.homeDir = get_new_environment_path()
 
     def tearDown(self):


More information about the Python-checkins mailing list