From: Guido van Rossum Date: Fri, 19 Jan 2001 21:06:50 +0000 (+0000) Subject: Use a saner test filename, to work on Windows. X-Git-Tag: v2.1a1~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8e14d4d0351264d73d475a6e93e242587c016da;p=python Use a saner test filename, to work on Windows. --- diff --git a/Lib/test/test_dumbdbm.py b/Lib/test/test_dumbdbm.py index af699e38ef..3c6a5c5aff 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'