summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-19 21:06:50 (GMT)
committerGuido van Rossum <guido@python.org>2001-01-19 21:06:50 (GMT)
commita8e14d4d0351264d73d475a6e93e242587c016da (patch)
treef02d994dde6d647463d8b63b8aaa8c1805d782b0 /Lib
parent4bf9c20e18e53f57d2ec550b971da6cc7b1d2803 (diff)
downloadcpython-a8e14d4d0351264d73d475a6e93e242587c016da.zip
cpython-a8e14d4d0351264d73d475a6e93e242587c016da.tar.gz
cpython-a8e14d4d0351264d73d475a6e93e242587c016da.tar.bz2
Use a saner test filename, to work on Windows.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_dumbdbm.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_dumbdbm.py b/Lib/test/test_dumbdbm.py
index af699e3..3c6a5c5 100644
--- a/Lib/test/test_dumbdbm.py
+++ b/Lib/test/test_dumbdbm.py
@@ -7,9 +7,7 @@
import dumbdbm as dbm
from dumbdbm import error
-from test_support import verbose
-
-filename = '/tmp/delete_me'
+from test_support import verbose, TESTFN as filename
d = dbm.open(filename, 'c')
d['a'] = 'b'