From edc080a3bb4ffceaee320ea0369f7e9f53e12650 Mon Sep 17 00:00:00 2001 From: Volodymyr Boyko Date: Tue, 27 Oct 2020 11:51:05 +0630 Subject: [PATCH] [VRF] Add duthost fixture parameter to TestVrfLoopbackIntf setup Signed-off-by: Volodymyr Boyko --- tests/vrf/test_vrf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/vrf/test_vrf.py b/tests/vrf/test_vrf.py index 48a448ea19f..15fa2946de2 100644 --- a/tests/vrf/test_vrf.py +++ b/tests/vrf/test_vrf.py @@ -709,7 +709,7 @@ class TestVrfLoopbackIntf(): announce_prefix = '10.10.10.0/26' @pytest.fixture(scope="class", autouse=True) - def setup_vrf_loopback(self, ptfhost, cfg_facts, tbinfo): + def setup_vrf_loopback(self, duthost, ptfhost, cfg_facts, tbinfo): # -------- Setup ---------- lb0_ip_facts = get_intf_ips('Loopback0', cfg_facts) vlan1000_ip_facts = get_intf_ips('Vlan1000', cfg_facts)