summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-24 21:47:59 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-24 21:47:59 (GMT)
commitaab24019777c5aee222b67e785a88c3e2909c5de (patch)
treed852cddfdf8f174ffaa1795e66273a2fbcef0a9d /Lib/bsddb
parent469a05fe46b7adfac11d9d2e4c64ec4a419d5ea6 (diff)
downloadcpython-aab24019777c5aee222b67e785a88c3e2909c5de.zip
cpython-aab24019777c5aee222b67e785a88c3e2909c5de.tar.gz
cpython-aab24019777c5aee222b67e785a88c3e2909c5de.tar.bz2
#7269: fix failures in test_bsddb3. Patch by Florent Xicluna.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r--Lib/bsddb/test/test_misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_misc.py b/Lib/bsddb/test/test_misc.py
index 47f14d9..0cf75e9 100644
--- a/Lib/bsddb/test/test_misc.py
+++ b/Lib/bsddb/test/test_misc.py
@@ -10,7 +10,7 @@ from test_all import db, dbshelve, hashopen, test_support, get_new_environment_p
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):