Skip to content
Merged
Changes from 1 commit
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/crm/test_crm.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ def test_acl_entry(duthosts, enum_rand_one_per_hwsku_frontend_hostname, enum_fro
if duthost.facts["asic_type"] == "marvell":
# Remove DATA ACL Table and add it again with ports in same port group
mg_facts = duthost.get_extended_minigraph_facts(tbinfo)
tmp_ports = mg_facts["minigraph_ports"].keys()
tmp_ports = list(mg_facts["minigraph_ports"].keys())
tmp_ports.sort(key=lambda x: int(x[8:]))
for i in range(4):
if i == 0:
Expand Down