From: Victor Stinner Date: Tue, 22 Nov 2011 21:30:19 +0000 (+0100) Subject: Issue #13436: Fix unsetenv() test on Windows X-Git-Tag: v3.2.3rc1~367 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3f82680313389bf41fd8c70620b1c336fc36ed8;p=thirdparty%2FPython%2Fcpython.git Issue #13436: Fix unsetenv() test on Windows --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index d06f08ed843f..876469b97808 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -427,10 +427,11 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): if sys.platform == "win32": # an environment variable is limited to 32,767 characters key = 'x' * 50000 + self.assertRaises(ValueError, os.environ.__delitem__, key) else: # "=" is not allowed in a variable name key = 'key=' - self.assertRaises(OSError, os.environ.__delitem__, key) + self.assertRaises(OSError, os.environ.__delitem__, key) class WalkTests(unittest.TestCase): """Tests for os.walk()."""