about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
authordirkf <fieldhouse@gmx.net>2023-09-03 01:13:40 +0100
committerdirkf <fieldhouse@gmx.net>2023-09-03 01:13:40 +0100
commit21caaf23800c95451cec27dfac56df2c0f8de85a (patch)
treeff8973fba36c0beb67effadbeb1374cf1450ffc8 /test
parent31f50c8194f12c27ac6fbfe336f1d515aa8677ae (diff)
downloadyoutube-dl-21caaf23800c95451cec27dfac56df2c0f8de85a.tar.gz
youtube-dl-21caaf23800c95451cec27dfac56df2c0f8de85a.tar.xz
youtube-dl-21caaf23800c95451cec27dfac56df2c0f8de85a.zip
[test] Remove redundancy from lambda expected value regex
Diffstat (limited to 'test')
-rw-r--r--test/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helper.py b/test/helper.py
index fc55c6b46..5b7e3dfe2 100644
--- a/test/helper.py
+++ b/test/helper.py
@@ -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(