Home | History | Annotate | Download | only in test_utils

Lines Matching refs:missing

857         missing = []
861 missing.append(key)
865 if not (missing or mismatched):
869 if missing:
870 standardMsg = 'Missing: %r' % ','.join(missing)
882 are missing from actual_seq and vice versa if any.
887 missing = list(expected.difference(actual))
889 missing.sort()
898 missing, unexpected = _SortedListDifference(expected, actual)
900 if missing:
901 errors.append('Expected, but missing:\n %r' % missing)
991 missing = []
998 missing.append(e)
1017 missing.extend(expected[i:])
1020 return missing, unexpected