summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pty.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-26 21:10:30 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-26 21:10:30 (GMT)
commitbec087f29d7dca0aaf8f51be7d7c135e9b84e7f1 (patch)
treeb7e37c8e82279a3a58d768ec4a79fd51488521f7 /Lib/test/test_pty.py
parentad57d97596bb9466e6fce0c3dfcf436fd5c36ff9 (diff)
downloadcpython-bec087f29d7dca0aaf8f51be7d7c135e9b84e7f1.zip
cpython-bec087f29d7dca0aaf8f51be7d7c135e9b84e7f1.tar.gz
cpython-bec087f29d7dca0aaf8f51be7d7c135e9b84e7f1.tar.bz2
fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
Diffstat (limited to 'Lib/test/test_pty.py')
-rw-r--r--Lib/test/test_pty.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pty.py b/Lib/test/test_pty.py
index 25a04fc..28de9ef 100644
--- a/Lib/test/test_pty.py
+++ b/Lib/test/test_pty.py
@@ -4,7 +4,7 @@ import pty
import os
import sys
import signal
-from test.test_support import verbose, SkipTest, run_unittest
+from test.test_support import verbose, run_unittest
import unittest
TEST_STRING_1 = "I wish to buy a fish license.\n"
@@ -69,7 +69,7 @@ class PtyTest(unittest.TestCase):
debug("Got slave_fd '%d'" % slave_fd)
except OSError:
# " An optional feature could not be imported " ... ?
- raise SkipTest, "Pseudo-terminals (seemingly) not functional."
+ raise unittest.SkipTest, "Pseudo-terminals (seemingly) not functional."
self.assertTrue(os.isatty(slave_fd), 'slave_fd is not a tty')