| commit | a8e14d4d0351264d73d475a6e93e242587c016da | [log] [tgz] |
|---|---|---|
| author | Guido van Rossum <guido@python.org> | Fri Jan 19 21:06:50 2001 +0000 |
| committer | Guido van Rossum <guido@python.org> | Fri Jan 19 21:06:50 2001 +0000 |
| tree | f02d994dde6d647463d8b63b8aaa8c1805d782b0 | |
| parent | 4bf9c20e18e53f57d2ec550b971da6cc7b1d2803 [diff] |
Use a saner test filename, to work on Windows.
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'