[Python-checkins] cpython (3.2): Issue #13436: Fix unsetenv() test on Windows

victor.stinner python-checkins at python.org
Tue Nov 22 22:30:44 CET 2011


http://hg.python.org/cpython/rev/2e5506d9a079
changeset:   73707:2e5506d9a079
branch:      3.2
parent:      73705:19999f594066
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Tue Nov 22 22:30:19 2011 +0100
summary:
  Issue #13436: Fix unsetenv() test on Windows

files:
  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
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -427,10 +427,11 @@
         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()."""

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list