don't use assertSameElements.

This commit is contained in:
Gregory P. Smith 2012-02-16 00:34:12 -08:00
parent 58e7c1dc02
commit a124a688a2

View file

@ -253,7 +253,7 @@ def test__copy_to_each(self):
# 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')