From 091b6ef79340a69f63de745b9a70b65ec9a21cdd Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 22 Nov 2011 22:30:19 +0100 Subject: [PATCH] Issue #13436: Fix unsetenv() test on Windows --- Lib/test/test_os.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 4e4956e953..eab8f528cb 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -365,10 +365,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().""" -- 2.50.1