diff options
-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' |