[Python-checkins] r84202 - python/branches/py3k/Lib/test/test_sys.py

victor.stinner python-checkins at python.org
Thu Aug 19 13:30:09 CEST 2010


Author: victor.stinner
Date: Thu Aug 19 13:30:09 2010
New Revision: 84202

Log:
Ooops, finish test_sys fix: use expected variable


Modified:
   python/branches/py3k/Lib/test/test_sys.py

Modified: python/branches/py3k/Lib/test/test_sys.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sys.py	(original)
+++ python/branches/py3k/Lib/test/test_sys.py	Thu Aug 19 13:30:09 2010
@@ -579,7 +579,7 @@
             expected = 'mbcs'
         else:
             expected = None
-        self.check_fsencoding(fs_encoding)
+        self.check_fsencoding(fs_encoding, expected)
 
     @unittest.skipIf(sys.platform in ('win32', 'darwin'),
                      'PYTHONFSENCODING is ignored on Windows and Mac OS X')


More information about the Python-checkins mailing list