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/qos/qos_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def eos_to_linux_intf(eos_intf_name, hwsku=None):
"""
if hwsku == "MLNX-OS":
linux_intf_name = eos_intf_name.replace("ernet 1/", "sl1p").replace("/", "sp")
elif "Nokia" in hwsku:
elif hwsku and "Nokia" in hwsku:
linux_intf_name = eos_intf_name
else:
linux_intf_name = eos_intf_name.replace('Ethernet', 'et').replace('/', '_')
Expand Down