Issue #13436: Fix unsetenv() test on Windows

This commit is contained in:
Victor Stinner 2011-11-22 22:30:19 +01:00
parent 896f4714f4
commit b3f8268031
1 changed files with 2 additions and 1 deletions

View File

@ -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()."""