Fix test_openpty.

This commit is contained in:
Guido van Rossum 2007-05-30 00:58:53 +00:00
parent 93f3910dca
commit dc089b6d07
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ class OpenptyTest(unittest.TestCase):
if not os.isatty(slave):
self.fail("Slave-end of pty is not a terminal.")
os.write(slave, 'Ping!')
self.assertEqual(os.read(master, 1024), 'Ping!')
os.write(slave, b'Ping!')
self.assertEqual(os.read(master, 1024), b'Ping!')
def test_main():
run_unittest(OpenptyTest)