diff options
author | Guido van Rossum <guido@python.org> | 2001-01-19 21:06:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-19 21:06:50 (GMT) |
commit | a8e14d4d0351264d73d475a6e93e242587c016da (patch) | |
tree | f02d994dde6d647463d8b63b8aaa8c1805d782b0 | |
parent | 4bf9c20e18e53f57d2ec550b971da6cc7b1d2803 (diff) | |
download | cpython-a8e14d4d0351264d73d475a6e93e242587c016da.zip cpython-a8e14d4d0351264d73d475a6e93e242587c016da.tar.gz cpython-a8e14d4d0351264d73d475a6e93e242587c016da.tar.bz2 |
Use a saner test filename, to work on Windows.
-rw-r--r-- | Lib/test/test_dumbdbm.py | 4 |
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' |