commit | 773a8c4f8d009375dde45c76d47458534f5218ba | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Sun Jan 22 20:55:20 2017 -0800 |
committer | Gregory P. Smith <greg@krypto.org> | Sun Jan 22 20:55:20 2017 -0800 |
tree | e8e7de8e6b3423a552aef0b8f59bf033a8569320 | |
parent | 4d5097a7da65c39849fbcefab61caecd34f78512 [diff] | |
parent | 21a9b1dfc6bac8b77f511a02317a92a4feab576e [diff] |
typo fix, extra '.' on MacOS :)
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 @@ _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.')