[test] Remove redundancy from lambda expected value regex

This commit is contained in:
dirkf 2023-09-03 01:13:40 +01:00
parent 31f50c8194
commit 21caaf2380
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ def expect_value(self, got, expected, field):
self.assertTrue(
contains_str in got,
'field %s (value: %r) should contain %r' % (field, got, contains_str))
elif isinstance(expected, compat_str) and re.match(r'^lambda \w+:', expected):
elif isinstance(expected, compat_str) and re.match(r'lambda \w+:', expected):
fn = eval(expected)
suite = expected.split(':', 1)[1].strip()
self.assertTrue(