diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:55:20 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:55:20 (GMT) |
commit | 773a8c4f8d009375dde45c76d47458534f5218ba (patch) | |
tree | e8e7de8e6b3423a552aef0b8f59bf033a8569320 /Lib/test/test_subprocess.py | |
parent | 4d5097a7da65c39849fbcefab61caecd34f78512 (diff) | |
parent | 21a9b1dfc6bac8b77f511a02317a92a4feab576e (diff) | |
download | cpython-773a8c4f8d009375dde45c76d47458534f5218ba.zip cpython-773a8c4f8d009375dde45c76d47458534f5218ba.tar.gz cpython-773a8c4f8d009375dde45c76d47458534f5218ba.tar.bz2 |
typo fix, extra '.' on MacOS :)
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r-- | Lib/test/test_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index de39e34..fd865d7 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -2489,7 +2489,7 @@ class POSIXProcessTestCase(BaseTestCase): _libc_file_extensions = { 'Linux': 'so.6', - 'Darwin': '.dylib', + 'Darwin': 'dylib', } @unittest.skipIf(platform.uname()[0] not in _libc_file_extensions, 'Test requires a libc this code can load with ctypes.') |