diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:55:02 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:55:02 (GMT) |
commit | 21a9b1dfc6bac8b77f511a02317a92a4feab576e (patch) | |
tree | 0c94f4714db593fddbc5d80a9cf674f3fff3877d /Lib | |
parent | 744cd63df9870d0c5a141aa0742cc3e8ebbf23f6 (diff) | |
parent | 21d333b7037b9d1283981590d10fad4b59477dc3 (diff) | |
download | cpython-21a9b1dfc6bac8b77f511a02317a92a4feab576e.zip cpython-21a9b1dfc6bac8b77f511a02317a92a4feab576e.tar.gz cpython-21a9b1dfc6bac8b77f511a02317a92a4feab576e.tar.bz2 |
typo fix, extra '.' on MacOS :)
Diffstat (limited to 'Lib')
-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 faa153a..d747845 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -2502,7 +2502,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.') |