summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_openpty.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-11-14 20:16:53 (GMT)
committerBrett Cannon <brett@python.org>2012-11-14 20:16:53 (GMT)
commitcd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e (patch)
tree48d166a1fad3f85c13b24b0d0a1a42626ff45dce /Lib/test/test_openpty.py
parent8c5ec0a3af75a6779dad4101d0a9ad421f64fa60 (diff)
downloadcpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.zip
cpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.tar.gz
cpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.tar.bz2
Clean up the messages used by some tests.
Diffstat (limited to 'Lib/test/test_openpty.py')
-rw-r--r--Lib/test/test_openpty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py
index e8175ff..8713d34 100644
--- a/Lib/test/test_openpty.py
+++ b/Lib/test/test_openpty.py
@@ -4,7 +4,7 @@ import os, unittest
from test.support import run_unittest
if not hasattr(os, "openpty"):
- raise unittest.SkipTest("No openpty() available.")
+ raise unittest.SkipTest("os.openpty() not available.")
class OpenptyTest(unittest.TestCase):