mirror of https://github.com/python/cpython
Fix bad inheritance in test_subprocess that led to a number of tests being executed twice.
This commit is contained in:
parent
8848255d8a
commit
a86b262d1e
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue