diff options
author | Stefano Rivera <stefano@rivera.za.net> | 2020-10-10 09:04:34 -0700 |
---|---|---|
committer | Stefano Rivera <stefano@rivera.za.net> | 2020-10-10 09:04:34 -0700 |
commit | 1ae37ce13e89cd87169eb82de8948d4ff1afa592 (patch) | |
tree | dbce7044cd663b57ffd6f8c8e1fd01cccb0da056 /lib-python | |
parent | Drop -n, on MacOS, the builtin echo in sh doesn't support -n (diff) | |
download | pypy-1ae37ce13e89cd87169eb82de8948d4ff1afa592.tar.gz pypy-1ae37ce13e89cd87169eb82de8948d4ff1afa592.tar.bz2 pypy-1ae37ce13e89cd87169eb82de8948d4ff1afa592.zip |
We now have an nt_pypy scheme
Diffstat (limited to 'lib-python')
-rw-r--r-- | lib-python/2.7/test/test_sysconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/2.7/test/test_sysconfig.py b/lib-python/2.7/test/test_sysconfig.py index 69d660ba6a..5715c584f2 100644 --- a/lib-python/2.7/test/test_sysconfig.py +++ b/lib-python/2.7/test/test_sysconfig.py @@ -252,7 +252,7 @@ class TestSysConfig(unittest.TestCase): not import_module('_testcapi'), config_h) def test_get_scheme_names(self): - wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user', + wanted = ('nt', 'nt_pypy', 'nt_user', 'os2', 'os2_home', 'osx_framework_user', 'posix_home', 'posix_prefix', 'posix_user', 'pypy') self.assertEqual(get_scheme_names(), wanted) |