diff options
Diffstat (limited to 'Lib/test/test_popen.py')
-rw-r--r-- | Lib/test/test_popen.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_popen.py b/Lib/test/test_popen.py index 209bb13..d728792 100644 --- a/Lib/test/test_popen.py +++ b/Lib/test/test_popen.py @@ -5,7 +5,7 @@ """ import unittest -from test import test_support +from test import support import os, sys # Test that command-lines get down as we expect. @@ -40,10 +40,10 @@ class PopenTest(unittest.TestCase): 'foo "a \\"quoted\\" arg" bar', ["foo", 'a "quoted" arg', "bar"] ) - test_support.reap_children() + support.reap_children() def test_main(): - test_support.run_unittest(PopenTest) + support.run_unittest(PopenTest) if __name__ == "__main__": test_main() |