From 99435247e39134c34cff185c6d73d8ebc77d07e1 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 19 Aug 2010 11:30:09 +0000 Subject: [PATCH] Ooops, finish test_sys fix: use expected variable --- Lib/test/test_sys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 8a9da5ba517..eb50bbb40a3 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')