diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:30:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:30:19 (GMT) |
commit | b3f82680313389bf41fd8c70620b1c336fc36ed8 (patch) | |
tree | 547aeaabfc8afc32b550185bfd68743b8dfcb095 /Lib | |
parent | 896f4714f4df78f136ebcd07f543152e73657e4d (diff) | |
download | cpython-b3f82680313389bf41fd8c70620b1c336fc36ed8.zip cpython-b3f82680313389bf41fd8c70620b1c336fc36ed8.tar.gz cpython-b3f82680313389bf41fd8c70620b1c336fc36ed8.tar.bz2 |
Issue #13436: Fix unsetenv() test on Windows
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_os.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index d06f08e..876469b 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().""" |