summaryrefslogtreecommitdiff
path: root/Lib/test/test_popen2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_popen2.py')
-rw-r--r--Lib/test/test_popen2.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py
index 1eb06b4695..31f22d6adf 100644
--- a/Lib/test/test_popen2.py
+++ b/Lib/test/test_popen2.py
@@ -45,7 +45,7 @@ class Popen2Test(unittest.TestCase):
inst.wait()
popen2._cleanup()
self.assertFalse(popen2._active, "_active not empty")
- reap_children()
+ reap_children()
def validate_output(self, teststr, expected_out, r, w, e=None):
w.write(teststr)
@@ -57,7 +57,7 @@ class Popen2Test(unittest.TestCase):
if e is not None:
got = e.read()
self.assertFalse(got, "unexpected %r on stderr" % got)
-
+
def test_popen2(self):
r, w = popen2.popen2(self.cmd)
self.validate_output(self.teststr, self.expected, r, w)
@@ -84,7 +84,7 @@ class Popen2Test(unittest.TestCase):
w, r, e = os.popen3(self.cmd)
self.validate_output(self.teststr, self.expected, r, w, e)
-
+
def test_main():
run_unittest(Popen2Test)