summaryrefslogtreecommitdiff
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-11-06 23:40:22 +0100
committerVictor Stinner <victor.stinner@gmail.com>2012-11-06 23:40:22 +0100
commit90a9d511372fbaa75215183a9fe60302b1e10983 (patch)
tree924b7a8638c2936f647164180248c50d793f7426 /Lib/test/support.py
parent8f049e5b5b360900a5f4d429040c8bfdc89d2fc6 (diff)
downloadcpython-git-90a9d511372fbaa75215183a9fe60302b1e10983.tar.gz
Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space)
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 801ecf2193..abceca3a91 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -689,7 +689,7 @@ for name in (b'\xe7w\xf0', b'abc\xff'):
break
if FS_NONASCII:
- TESTFN_NONASCII = TESTFN + '- ' + FS_NONASCII
+ TESTFN_NONASCII = TESTFN + '-' + FS_NONASCII
else:
TESTFN_NONASCII = None