summaryrefslogtreecommitdiff
path: root/tests/test_cygwinccompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cygwinccompiler.py')
-rw-r--r--tests/test_cygwinccompiler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_cygwinccompiler.py b/tests/test_cygwinccompiler.py
index a57694d4..e57bab26 100644
--- a/tests/test_cygwinccompiler.py
+++ b/tests/test_cygwinccompiler.py
@@ -4,6 +4,7 @@ import sys
import os
from io import BytesIO
import subprocess
+from test.support import run_unittest
from distutils import cygwinccompiler
from distutils.cygwinccompiler import (CygwinCCompiler, check_config_h,
@@ -151,4 +152,4 @@ def test_suite():
return unittest.makeSuite(CygwinCCompilerTestCase)
if __name__ == '__main__':
- test_support.run_unittest(test_suite())
+ run_unittest(test_suite())