Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P)
diff --git a/Lib/test/test_openpty.py b/Lib/test/test_openpty.py
index cd939c6..1202845 100644
--- a/Lib/test/test_openpty.py
+++ b/Lib/test/test_openpty.py
@@ -12,11 +12,10 @@
 except AttributeError:
     raise ImportError, "No openpty() available."
 
-## # Please uncomment these if os.isatty() is added.
-## 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."
+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."
 
 os.write(slave, 'Ping!')
 print os.read(master, 1024)