diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-11-06 22:40:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-11-06 22:40:22 (GMT) |
commit | 90a9d511372fbaa75215183a9fe60302b1e10983 (patch) | |
tree | 924b7a8638c2936f647164180248c50d793f7426 /Lib/test/support.py | |
parent | 8f049e5b5b360900a5f4d429040c8bfdc89d2fc6 (diff) | |
download | cpython-90a9d511372fbaa75215183a9fe60302b1e10983.zip cpython-90a9d511372fbaa75215183a9fe60302b1e10983.tar.gz cpython-90a9d511372fbaa75215183a9fe60302b1e10983.tar.bz2 |
Issue #16414: Fix typo in support.TESTFN_NONASCII (useless space)
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r-- | Lib/test/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index 801ecf2..abceca3 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 |