From: Victor Stinner Date: Thu, 19 Aug 2010 11:30:09 +0000 (+0000) Subject: Ooops, finish test_sys fix: use expected variable X-Git-Tag: v3.2a2~208 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99435247e39134c34cff185c6d73d8ebc77d07e1;p=thirdparty%2FPython%2Fcpython.git Ooops, finish test_sys fix: use expected variable --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 8a9da5ba5171..eb50bbb40a39 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -579,7 +579,7 @@ class SysModuleTest(unittest.TestCase): 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')