Skip to content

Commit 0575c97

Browse files
authored
Update Lib/test/test_pty.py
1 parent cc2430b commit 0575c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def test_openpty(self):
196196
s2 = _readline(master_fd)
197197
self.assertEqual(b'For my pet fish, Eric.\n', normalize_output(s2))
198198

199-
@unittest.skip('TODO: RUSTPYTHON; AttributeError: module "tty" has no attribute "tcgetwinsize"')
199+
@unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: module "tty" has no attribute "tcgetwinsize"
200200
def test_fork(self):
201201
debug("calling pty.fork()")
202202
pid, master_fd = pty.fork()

0 commit comments

Comments
 (0)