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
2 changes: 1 addition & 1 deletion tests/platform_tests/test_kdump.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def wait_lc_healthy_if_sup(self, duthost, duthosts, localhost, conn_graph_facts,
# For sup, we also need to ensure linecards are back and healthy for following tests
is_sup = duthost.get_facts().get("modular_chassis") and duthost.is_supervisor_node()
if is_sup:
if 'Cisco-8800-RP' in duthost.facts.get('hwsku'):
if any(hwsku in duthost.facts.get('hwsku') for hwsku in ['Cisco-8800-RP', 'Nokia-IXR7250E']):
reboot_type = REBOOT_TYPE_SUPERVISOR_HEARTBEAT_LOSS
else:
reboot_type = REBOOT_TYPE_COLD
Expand Down
Loading