summaryrefslogtreecommitdiff
path: root/Lib/test/test_pipes.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-08-04 00:47:42 +0800
committerGitHub <noreply@github.com>2020-08-03 18:47:42 +0200
commitbb0424b122e3d222a558bd4177ce37befd3e0347 (patch)
treef5962e6276319558e48b702b6fa5a48f5c03ff6b /Lib/test/test_pipes.py
parenta7f5d93bb6906d0f999248b47295d3a59b130f4d (diff)
downloadcpython-git-bb0424b122e3d222a558bd4177ce37befd3e0347.tar.gz
bpo-40275: Use new test.support helper submodules in tests (GH-21451)
Diffstat (limited to 'Lib/test/test_pipes.py')
-rw-r--r--Lib/test/test_pipes.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_pipes.py b/Lib/test/test_pipes.py
index 1d538b9898..7d8cd54ba0 100644
--- a/Lib/test/test_pipes.py
+++ b/Lib/test/test_pipes.py
@@ -3,7 +3,9 @@ import os
import string
import unittest
import shutil
-from test.support import TESTFN, run_unittest, unlink, reap_children
+from test.support import run_unittest, reap_children
+from test.support.os_helper import TESTFN, unlink
+
if os.name != 'posix':
raise unittest.SkipTest('pipes module only works on posix')