summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-05-08 15:51:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-05-08 15:51:23 (GMT)
commit3c451e6d9ea4edc603f01f6b9be78d7bb9596227 (patch)
tree116d30e40725b2b38a812c0d926073ec2a42cde5 /Lib
parent905982b6f9d1538b2e15f834b737a2d86f672dfd (diff)
downloadcpython-3c451e6d9ea4edc603f01f6b9be78d7bb9596227.zip
cpython-3c451e6d9ea4edc603f01f6b9be78d7bb9596227.tar.gz
cpython-3c451e6d9ea4edc603f01f6b9be78d7bb9596227.tar.bz2
Merged revisions 80986-80987 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80986 | benjamin.peterson | 2010-05-08 10:41:44 -0500 (Sat, 08 May 2010) | 1 line r80967 introduced a new scheme ........ r80987 | benjamin.peterson | 2010-05-08 10:42:29 -0500 (Sat, 08 May 2010) | 1 line add underscore ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_sysconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py
index 5eff318..7abff0d 100644
--- a/Lib/test/test_sysconfig.py
+++ b/Lib/test/test_sysconfig.py
@@ -234,8 +234,8 @@ class TestSysConfig(unittest.TestCase):
self.assertTrue(os.path.isfile(config_h), config_h)
def test_get_scheme_names(self):
- wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'posix_home',
- 'posix_prefix', 'posix_user')
+ wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user',
+ 'posix_home', 'posix_prefix', 'posix_user')
self.assertEquals(get_scheme_names(), wanted)
def test_symlink(self):