don't use assertSameElements.

This commit is contained in:
Gregory P. Smith 2012-02-16 00:34:12 -08:00
parent 58e7c1dc02
commit a124a688a2
1 changed files with 1 additions and 1 deletions

View File

@ -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')