diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:54:42 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2017-01-23 04:54:42 (GMT) |
commit | 21d333b7037b9d1283981590d10fad4b59477dc3 (patch) | |
tree | 6b70ea345ef95bc92b460bc88cda72309fe69693 | |
parent | 95919c096ca74b6a28000193e1c502408a9f3e6c (diff) | |
download | cpython-21d333b7037b9d1283981590d10fad4b59477dc3.zip cpython-21d333b7037b9d1283981590d10fad4b59477dc3.tar.gz cpython-21d333b7037b9d1283981590d10fad4b59477dc3.tar.bz2 |
typo fix, extra '.' :)
-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 27406d4..65b7cce 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -2452,7 +2452,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.') |