mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1132076 - [mozlog] Incorrect skip count in HTML log summary. r=davehunt
This commit is contained in:
parent
de3f2801d2
commit
00d713af03
@ -104,7 +104,7 @@ class HTMLFormatter(base.BaseFormatter):
|
||||
|
||||
if status != expected:
|
||||
status_name = "UNEXPECTED_" + status
|
||||
elif status != "PASS":
|
||||
elif status not in ("PASS", "SKIP"):
|
||||
status_name = "EXPECTED_" + status
|
||||
|
||||
self.test_count[status_name] += 1
|
||||
|
Loading…
Reference in New Issue
Block a user