We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c5862 commit eae18b0Copy full SHA for eae18b0
Lib/test/test_ioctl.py
@@ -145,9 +145,9 @@ def setUp(self):
145
146
@unittest.skipUnless(hasattr(termios, 'TCFLSH'), 'requires termios.TCFLSH')
147
def test_ioctl_tcflush(self):
148
- r = fcntl.ioctl(self.master_fd, termios.TCFLSH, termios.TCIFLUSH)
+ r = fcntl.ioctl(self.slave_fd, termios.TCFLSH, termios.TCIFLUSH)
149
self.assertEqual(r, 0)
150
- r = fcntl.ioctl(self.master_fd, termios.TCFLSH, termios.TCOFLUSH)
+ r = fcntl.ioctl(self.slave_fd, termios.TCFLSH, termios.TCOFLUSH)
151
152
153
def test_ioctl_set_window_size(self):
0 commit comments