Lines Matching refs:actual_seq
889 def assertItemsEqual(self, expected_seq, actual_seq, msg=None):
891 expected_seq and actual_seq contain the same elements. It is
894 self.assertEqual(sorted(expected_seq), sorted(actual_seq))
897 are missing from actual_seq and vice versa if any.
906 actual = sorted(actual_seq)
910 actual = list(actual_seq)