Issue #13436: Fix unsetenv() test on Windows
This commit is contained in:
parent
53853c3fa9
commit
091b6ef793
|
@ -365,6 +365,7 @@ 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='
|
||||
|
|
Loading…
Reference in New Issue