summaryrefslogtreecommitdiff
path: root/tests/test_ctrl_chars.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ctrl_chars.py')
-rwxr-xr-xtests/test_ctrl_chars.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_ctrl_chars.py b/tests/test_ctrl_chars.py
index 032027c..11fb55c 100755
--- a/tests/test_ctrl_chars.py
+++ b/tests/test_ctrl_chars.py
@@ -26,8 +26,9 @@ from . import PexpectTestCase
import time
import sys
-from ptyprocess import ptyprocess
-ptyprocess._make_eof_intr()
+if sys.platform != 'win32':
+ from ptyprocess import ptyprocess
+ ptyprocess._make_eof_intr()
if sys.version_info[0] >= 3:
def byte(i):
@@ -124,5 +125,5 @@ class TestCtrlChars(PexpectTestCase.PexpectTestCase):
if __name__ == '__main__':
unittest.main()
-suite = unittest.makeSuite(TestCtrlChars,'test')
+suite = unittest.TestLoader().loadTestsFromTestCase(TestCtrlChars)