Commit a124a688 authored by Gregory P. Smith's avatar Gregory P. Smith

don't use assertSameElements.

parent 58e7c1dc
......@@ -253,7 +253,7 @@ class SmallPtyTests(unittest.TestCase):
# Test that the right data went to the right places.
rfds = select.select([read_from_stdout_fd, masters[1]], [], [], 0)[0]
self.assertSameElements([read_from_stdout_fd, masters[1]], rfds)
self.assertEqual([read_from_stdout_fd, masters[1]], rfds)
self.assertEqual(os.read(read_from_stdout_fd, 20), b'from master')
self.assertEqual(os.read(masters[1], 20), b'from stdin')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment