[Python-checkins] r80986 - python/trunk/Lib/test/test_sysconfig.py

benjamin.peterson python-checkins at python.org
Sat May 8 17:41:45 CEST 2010


Author: benjamin.peterson
Date: Sat May  8 17:41:44 2010
New Revision: 80986

Log:
r80967 introduced a new scheme

Modified:
   python/trunk/Lib/test/test_sysconfig.py

Modified: python/trunk/Lib/test/test_sysconfig.py
==============================================================================
--- python/trunk/Lib/test/test_sysconfig.py	(original)
+++ python/trunk/Lib/test/test_sysconfig.py	Sat May  8 17:41:44 2010
@@ -235,8 +235,8 @@
         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_frameworkuser',
+                  'posix_home', 'posix_prefix', 'posix_user')
         self.assertEquals(get_scheme_names(), wanted)
 
     def test_symlink(self):


More information about the Python-checkins mailing list