aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-10-13 02:44:17 +0300
committerMatti Picus <matti.picus@gmail.com>2020-10-13 02:44:17 +0300
commitd3998f8b15246966a58e9225d8c9a1c534340d53 (patch)
treeb4289b012f3c79e5b66e5b2f65650d637b9ef932 /lib-python
parentupdate version number after merge of stdlib-2.7.18-3 (diff)
downloadpypy-d3998f8b15246966a58e9225d8c9a1c534340d53.tar.gz
pypy-d3998f8b15246966a58e9225d8c9a1c534340d53.tar.bz2
pypy-d3998f8b15246966a58e9225d8c9a1c534340d53.zip
sort the tuple of wanted names
Diffstat (limited to 'lib-python')
-rw-r--r--lib-python/2.7/test/test_sysconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-python/2.7/test/test_sysconfig.py b/lib-python/2.7/test/test_sysconfig.py
index f2f554beb4..43a8ca78bf 100644
--- a/lib-python/2.7/test/test_sysconfig.py
+++ b/lib-python/2.7/test/test_sysconfig.py
@@ -252,8 +252,8 @@ class TestSysConfig(unittest.TestCase):
not import_module('_testcapi'), config_h)
def test_get_scheme_names(self):
- wanted = ('nt', 'pypy_nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user',
- 'posix_home', 'posix_prefix', 'posix_user', 'pypy')
+ wanted = ('nt', 'nt_user', 'os2', 'os2_home', 'osx_framework_user',
+ 'posix_home', 'posix_prefix', 'posix_user', 'pypy', 'pypy_nt')
self.assertEqual(get_scheme_names(), wanted)
@unittest.skipIf(check_impl_detail(pypy=True),