summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb/test/test_associate.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-01-26 23:14:17 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2008-01-26 23:14:17 (GMT)
commit3d785e2c6a0ceeb83747cf46b509cd1c81e689ca (patch)
tree4afd2730cacabc2f2ff3d39e439b87adc82ea797 /Lib/bsddb/test/test_associate.py
parent7f47d93f52008e38ed09e379e1a3631dce35874f (diff)
downloadcpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.zip
cpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.tar.gz
cpython-3d785e2c6a0ceeb83747cf46b509cd1c81e689ca.tar.bz2
Consistently use tempfile.tempdir for the db_home directory.
Diffstat (limited to 'Lib/bsddb/test/test_associate.py')
-rw-r--r--Lib/bsddb/test/test_associate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/test/test_associate.py b/Lib/bsddb/test/test_associate.py
index ff10cd7..fd70c5d 100644
--- a/Lib/bsddb/test/test_associate.py
+++ b/Lib/bsddb/test/test_associate.py
@@ -151,7 +151,7 @@ class AssociateTestCase(unittest.TestCase):
def setUp(self):
self.filename = self.__class__.__name__ + '.db'
- homeDir = os.path.join(os.path.dirname(sys.argv[0]), 'db_home')
+ homeDir = os.path.join(tempfile.gettempdir(), 'db_home')
self.homeDir = homeDir
try:
os.mkdir(homeDir)