[Python-checkins] cpython (3.2): Fix bad inheritance in test_subprocess that led to a number of tests being

georg.brandl python-checkins at python.org
Mon Feb 20 21:41:43 CET 2012


http://hg.python.org/cpython/rev/61b3f1582588
changeset:   75075:61b3f1582588
branch:      3.2
user:        Georg Brandl <georg at python.org>
date:        Mon Feb 20 21:34:57 2012 +0100
summary:
  Fix bad inheritance in test_subprocess that led to a number of tests being executed twice.

files:
  Lib/test/test_subprocess.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1702,7 +1702,7 @@
         self.with_spaces([sys.executable, self.fname, "ab cd"])
 
 
-class ContextManagerTests(ProcessTestCase):
+class ContextManagerTests(BaseTestCase):
 
     def test_pipe(self):
         with subprocess.Popen([sys.executable, "-c",

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


More information about the Python-checkins mailing list