Skip to content

Commit 51a2d06

Browse files
committed
Slight optimization to Dashboard processing
1 parent 5f91c71 commit 51a2d06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8052,11 +8052,11 @@ def __process_dashboard(self, has_exception, init=False):
80528052
res_low = t_res.lower()
80538053
if sb_config._results[key] == "Failed":
80548054
the_failed.append([res_low, t_res, t_d_id, t_dur])
8055-
if sb_config._results[key] == "Skipped":
8055+
elif sb_config._results[key] == "Skipped":
80568056
the_skipped.append([res_low, t_res, t_d_id, t_dur])
8057-
if sb_config._results[key] == "Passed":
8057+
elif sb_config._results[key] == "Passed":
80588058
the_passed.append([res_low, t_res, t_d_id, t_dur])
8059-
if sb_config._results[key] == "Untested":
8059+
elif sb_config._results[key] == "Untested":
80608060
the_untested.append([res_low, t_res, t_d_id, t_dur])
80618061
for row in the_failed:
80628062
row = (

0 commit comments

Comments
 (0)