diff options
author | Georg Brandl <georg@python.org> | 2012-02-20 20:34:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-20 20:34:57 (GMT) |
commit | a86b262d1e8b98de5c8f6781cc30eef0b0c98ddc (patch) | |
tree | 0141c36e69930fd7483c679b0404413a4256f0bb /Lib/test/test_subprocess.py | |
parent | 8848255d8a5b3ac711801466de7e19bae54246af (diff) | |
download | cpython-a86b262d1e8b98de5c8f6781cc30eef0b0c98ddc.zip cpython-a86b262d1e8b98de5c8f6781cc30eef0b0c98ddc.tar.gz cpython-a86b262d1e8b98de5c8f6781cc30eef0b0c98ddc.tar.bz2 |
Fix bad inheritance in test_subprocess that led to a number of tests being executed twice.
Diffstat (limited to 'Lib/test/test_subprocess.py')
-rw-r--r-- | 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 index 40d0fb4..fb0b834 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", |