diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-19 11:30:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-19 11:30:09 (GMT) |
commit | 99435247e39134c34cff185c6d73d8ebc77d07e1 (patch) | |
tree | 04c8c715c75bc5e43a594167c29525fcf25e4dcd /Lib/test/test_sys.py | |
parent | 85ca2afe3bdda1896892bbf5963a6afb2e7eb605 (diff) | |
download | cpython-99435247e39134c34cff185c6d73d8ebc77d07e1.zip cpython-99435247e39134c34cff185c6d73d8ebc77d07e1.tar.gz cpython-99435247e39134c34cff185c6d73d8ebc77d07e1.tar.bz2 |
Ooops, finish test_sys fix: use expected variable
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 8a9da5b..eb50bbb 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') |