summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2017-01-23 04:55:02 (GMT)
committerGregory P. Smith <greg@krypto.org>2017-01-23 04:55:02 (GMT)
commit21a9b1dfc6bac8b77f511a02317a92a4feab576e (patch)
tree0c94f4714db593fddbc5d80a9cf674f3fff3877d /Lib
parent744cd63df9870d0c5a141aa0742cc3e8ebbf23f6 (diff)
parent21d333b7037b9d1283981590d10fad4b59477dc3 (diff)
downloadcpython-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.py2
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.')