From 0f9f2cfe6befccac08b85bde255d222abdf0aab9 Mon Sep 17 00:00:00 2001 From: yaqiangz Date: Tue, 27 Dec 2022 06:07:50 +0000 Subject: [PATCH] [m0] Fix everflow related test failed on m0 --- tests/everflow/everflow_test_utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/everflow/everflow_test_utilities.py b/tests/everflow/everflow_test_utilities.py index 2c132e66c59..214baf5f60e 100644 --- a/tests/everflow/everflow_test_utilities.py +++ b/tests/everflow/everflow_test_utilities.py @@ -316,7 +316,7 @@ def setup_info(duthosts, rand_one_dut_hostname, tbinfo, request): """ topo = tbinfo['topo']['name'] - if 't1' in topo or 't0' in topo: + if 't1' in topo or 't0' in topo or 'm0' in topo: downstream_duthost = upstream_duthost = duthost = duthosts[rand_one_dut_hostname] elif 't2' in topo: downstream_duthost, upstream_duthost = get_t2_duthost(duthosts, tbinfo)