Home
last modified time | relevance | path

Searched refs:expected_regexp (Results 1 – 1 of 1) sorted by relevance

/tools/test/connectivity/acts/framework/acts/
Dasserts.py231 def __init__(self, expected, expected_regexp=None, extras=None): argument
234 self.expected_regexp = expected_regexp
252 if self.expected_regexp is None:
255 expected_regexp = self.expected_regexp
256 if isinstance(expected_regexp, str):
257 expected_regexp = re.compile(expected_regexp)
258 if not expected_regexp.search(str(exc_value)):
260 (expected_regexp.pattern, str(exc_value)),