diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-08 15:42:29 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-08 15:42:29 +0000 |
commit | 7baf8627bd98c58988123688c07b470d89785b51 (patch) | |
tree | 4bba79a4af6b88f38c0fe440bf6e953c7fb83ad6 /Lib/test/test_sysconfig.py | |
parent | ac896ed177c5e507494978a706ad59c13b044baf (diff) | |
download | cpython-git-7baf8627bd98c58988123688c07b470d89785b51.tar.gz |
add underscore
Diffstat (limited to 'Lib/test/test_sysconfig.py')
-rw-r--r-- | Lib/test/test_sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py index 48c5b53adf..1e12a454e9 100644 --- a/Lib/test/test_sysconfig.py +++ b/Lib/test/test_sysconfig.py @@ -235,7 +235,7 @@ 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', 'osx_frameworkuser', + wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user', 'posix_home', 'posix_prefix', 'posix_user') self.assertEquals(get_scheme_names(), wanted) |