summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-19 11:30:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-19 11:30:09 (GMT)
commit99435247e39134c34cff185c6d73d8ebc77d07e1 (patch)
tree04c8c715c75bc5e43a594167c29525fcf25e4dcd /Lib/test/test_sys.py
parent85ca2afe3bdda1896892bbf5963a6afb2e7eb605 (diff)
downloadcpython-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.py2
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')