We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b2f21 commit 1070815Copy full SHA for 1070815
codeflash/verification/parse_test_output.py
@@ -265,7 +265,7 @@ def parse_test_xml(
265
timed_out = True
266
267
sys_stdout = testcase.system_out or ""
268
- begin_matches = [match for match in matches_re_start.finditer(sys_stdout)]
+ begin_matches = list(matches_re_start.finditer(sys_stdout))
269
end_matches = {}
270
for match in matches_re_end.finditer(sys_stdout):
271
groups = match.groups()
0 commit comments