Skip to content

Commit f333b31

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c334cd4 commit f333b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_cpp/catch2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def _parse_xml(
200200
)
201201
test_exception = test_case.findall(".//Exception")
202202
test_failure = test_case.findall(".//Failure")
203-
for exception in (test_exception + test_failure):
203+
for exception in test_exception + test_failure:
204204
file_name = exception.attrib["filename"]
205205
line_num = int(exception.attrib["line"])
206206

0 commit comments

Comments
 (0)