Skip to content

Commit c08cd14

Browse files
committed
formatter
1 parent a547d96 commit c08cd14

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

codeflash/verification/parse_test_output.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ def parse_test_xml(
238238
test_class_path = testcase.classname
239239
try:
240240
if testcase.name is None:
241-
logger.debug(f"testcase.name is None for testcase {testcase!r} in file {test_xml_file_path}, skipping")
241+
logger.debug(
242+
f"testcase.name is None for testcase {testcase!r} in file {test_xml_file_path}, skipping"
243+
)
242244
continue
243245
test_function = testcase.name.split("[", 1)[0] if "[" in testcase.name else testcase.name
244246
except (AttributeError, TypeError) as e:

0 commit comments

Comments
 (0)