Skip to content

Commit 761a0e8

Browse files
committed
Modified the test scritp to pass mandatorty argument priority while creating acl group member
1 parent 238d1c7 commit 761a0e8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ptf/saidebugcounters.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2153,7 +2153,7 @@ def setupPortIngresDropAcl(
21532153
field_dst_ip=dst_ip,
21542154
field_dst_mac=dst_mac)
21552155
self.assertTrue(acl_entry != 0, "Failed to Create ACL entry")
2156-
2156+
priority = 0
21572157
acl_table_group = sai_thrift_create_acl_table_group(
21582158
self.client,
21592159
acl_stage=stage,
@@ -2162,7 +2162,8 @@ def setupPortIngresDropAcl(
21622162
acl_group_member = sai_thrift_create_acl_table_group_member(
21632163
self.client,
21642164
acl_table_group_id=acl_table_group,
2165-
acl_table_id=acl_table_id)
2165+
acl_table_id=acl_table_id,
2166+
priority=priority)
21662167

21672168
finally:
21682169
acl.append({

0 commit comments

Comments
 (0)