Skip to content

Commit bbbf1f8

Browse files
committed
Fix regex
Signed-off-by: zitingguo-ms <[email protected]>
1 parent 005e13b commit bbbf1f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/acl/test_acl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def setup(duthosts, ptfhost, rand_selected_dut, rand_selected_front_end_dut, ran
440440
)
441441
or 't1-isolated' in tbinfo["topo"]["name"]
442442
)
443-
and not re.match(r"t0-.*-s\d+$", tbinfo["topo"]["name"])
443+
and not re.match(r"t0-.*s\d+", tbinfo["topo"]["name"])
444444
):
445445

446446
for k, v in list(port_channels.items()):

0 commit comments

Comments
 (0)