From: Georg Brandl Date: Mon, 20 Feb 2012 20:34:57 +0000 (+0100) Subject: Fix bad inheritance in test_subprocess that led to a number of tests being executed... X-Git-Tag: v3.2.3rc1~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a86b262d1e8b98de5c8f6781cc30eef0b0c98ddc;p=python Fix bad inheritance in test_subprocess that led to a number of tests being executed twice. --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 40d0fb48be..fb0b834246 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1702,7 +1702,7 @@ class CommandsWithSpaces (BaseTestCase): 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",