summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_uu.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_uu.py')
-rw-r--r--Lib/test/test_uu.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_uu.py b/Lib/test/test_uu.py
index e229e92..753b31e 100644
--- a/Lib/test/test_uu.py
+++ b/Lib/test/test_uu.py
@@ -174,8 +174,9 @@ class UUStdIOTest(unittest.TestCase):
class UUFileTest(unittest.TestCase):
def setUp(self):
- self.tmpin = os_helper.TESTFN + "i"
- self.tmpout = os_helper.TESTFN + "o"
+ # uu.encode() supports only ASCII file names
+ self.tmpin = os_helper.TESTFN_ASCII + "i"
+ self.tmpout = os_helper.TESTFN_ASCII + "o"
self.addCleanup(os_helper.unlink, self.tmpin)
self.addCleanup(os_helper.unlink, self.tmpout)