From 64aa5f6982da690a35d2c52e4ae4b9452737265f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 31 Dec 2002 18:05:15 +0000 Subject: [PATCH] Remove bogus test; the master is not a terminal on Solaris and HP-UX. --- Lib/test/test_openpty.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py index 858c9ea4db2..a8b8550c3c9 100644 --- a/Lib/test/test_openpty.py +++ b/Lib/test/test_openpty.py @@ -12,8 +12,6 @@ try: except AttributeError: raise TestSkipped, "No openpty() available." -if not os.isatty(master): - raise TestFailed, "Master-end of pty is not a terminal." if not os.isatty(slave): raise TestFailed, "Slave-end of pty is not a terminal."