From c01fb59d5eff3c9e1209655a7c6567b4e10fc100 Mon Sep 17 00:00:00 2001 From: Augustine Lee Date: Mon, 16 Dec 2024 13:39:28 +0000 Subject: [PATCH] Fix typo on route_consistency --- tests/route/test_route_consistency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/route/test_route_consistency.py b/tests/route/test_route_consistency.py index da8cb1666f7..3b7148b33a8 100644 --- a/tests/route/test_route_consistency.py +++ b/tests/route/test_route_consistency.py @@ -79,7 +79,7 @@ def retrieve_route_snapshot(asic, prefix_snapshot, dut_instance_name, signal_que for idx, dut in enumerate(duthosts.frontend_nodes): for asic in dut.asics: dut_instance_name = dut.hostname + '-' + str(asic.asic_index) - if dut.facts['switch_type'] in ["voq", "chassis_packet"] and idx == 0: + if dut.facts['switch_type'] in ["voq", "chassis-packet"] and idx == 0: dut_instance_name = dut_instance_name + "UpstreamLc" threading.Thread(target=retrieve_route_snapshot, args=(asic, prefix_snapshot, dut_instance_name, signal_queue)).start()