Skip to content

Commit ea46a25

Browse files
committed
small fix
1 parent c7f8e17 commit ea46a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/mfc/test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def test():
137137
cons.print(f"\nTest Summary: [bold green]{nPASS}[/bold green] passed, [bold red]{nFAIL}[/bold red] failed, [bold yellow]{nSKIP}[/bold yellow] skipped.\n")
138138

139139
# Print a summary of all errors at the end if errors exist
140-
if len((errors) != 0):
140+
if len(errors) != 0:
141141
cons.print(f"[bold red]Failed Cases[/bold red]\n")
142142
for e in errors:
143143
cons.print(e)

0 commit comments

Comments
 (0)