diff options
Diffstat (limited to 'Lib/test/test_uu.py')
-rw-r--r-- | Lib/test/test_uu.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_uu.py b/Lib/test/test_uu.py index 75d1108..bb553a1 100644 --- a/Lib/test/test_uu.py +++ b/Lib/test/test_uu.py @@ -124,8 +124,7 @@ except uu.Error, e: verify(str(e) == 'No valid begin line found in input file') # Test to verify that decode() will refuse to overwrite an existing file -import tempfile -outfile = tempfile.mktemp() +outfile = TESTFN + "out" inp = StringIO('Here is a message to be uuencoded') out = StringIO() uu.encode(inp, out, outfile) |