Skip to content

Commit 6dbcca3

Browse files
committed
update after total fix
1 parent d2b5b3a commit 6dbcca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-runner/wasi_test_runner/reporters/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _get_summary(self, fail_count: int, pass_count: int, skip_count: int, timedo
8080
if timedout_count:
8181
items.append(f"{self._fail_color}{timedout_count} timed out")
8282

83-
total = fail_count + pass_count + skip_count
83+
total = fail_count + pass_count + skip_count + timedout_count
8484
items.append(f"{self._reset_color}{total} total")
8585
return ", ".join(items)
8686

0 commit comments

Comments
 (0)