summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2017-01-22 20:54:42 -0800
committerGregory P. Smith <greg@krypto.org>2017-01-22 20:54:42 -0800
commit3bca4dacf5a470c3dd4d3c8819d4b4583054d208 (patch)
treeb982528cf9c5f1b44bbe572e24e42f0b41df4fb3
parentf3ebf59a937a95566adc74af40444f2b1f91a297 (diff)
downloadcpython-3bca4dacf5a470c3dd4d3c8819d4b4583054d208.tar.gz
typo fix, extra '.' :)
-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 27406d445e..65b7cce131 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.')