Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/common/plugins/sanity_check/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
'check_bgp',
'check_dbmemory',
'check_monit',
'check_mux_simulator',
'check_secureboot',
'check_neighbor_macsec_empty']
'check_neighbor_macsec_empty',
'check_mux_simulator']

__all__ = CHECK_ITEMS

Expand Down Expand Up @@ -540,7 +540,7 @@ def _verify_show_mux_status():
duts_parsed_mux_status = {}
err_msg_from_mux_status = []
if (has_active_active_ports and not wait_until(30, 5, 0, _verify_show_mux_status)) \
or (not _verify_show_mux_status()):
or (not wait_until(30, 5, 0, _verify_show_mux_status)):
if err_msg_from_mux_status:
err_msg = err_msg_from_mux_status[-1]
else:
Expand Down