Lines Matching full:mismatch
236 mismatch = self._check_original_state()
237 if mismatch:
238 raise error.TestError('Could not restore state: %s' % mismatch)
285 mismatch = {}
291 mismatch[k] = 'old: %s, new: %s' % (original_val, new_val)
293 if mismatch:
294 logging.warning('State Mismatch:\n%s', pprint.pformat(mismatch))
297 return mismatch
307 raise error.TestError('Unexpected state mismatch during '