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

benjamin.peterson python-checkins at python.org
Sat May 8 17:42:30 CEST 2010


Author: benjamin.peterson
Date: Sat May  8 17:42:29 2010
New Revision: 80987

Log:
add underscore

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:42:29 2010
@@ -235,7 +235,7 @@
         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)
 


More information about the Python-checkins mailing list