summaryrefslogtreecommitdiff
path: root/Lib/test/test_openpty.py
diff options
context:
space:
mode:
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 e8175ff094..8713d34671 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):