From a1a713ef919dce6f6860b7e94e30a3cb63cb816d Mon Sep 17 00:00:00 2001 From: Xin Wang Date: Fri, 19 Feb 2021 15:20:17 +0800 Subject: [PATCH] Remove dependency of deprecated fib plugin for test_dir_bcast.py (#3000) In PR #2741, the fib plugin for announcing routes have been deprecated. Announcing routes is done together with add-topo. The test_dir_bcast.py script dependent on the fib plugin was missed in PR #2741. Since the routes have already been announced during add-topo, there is no need to do that for test_dir_bcast.py again. To fix the issue, we can simply removes the dependency of the fib plugin for test_dir_bcast.py. Signed-off-by: Xin Wang --- tests/ipfwd/test_dir_bcast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ipfwd/test_dir_bcast.py b/tests/ipfwd/test_dir_bcast.py index 4976d466ff5..0a33a6ebd96 100644 --- a/tests/ipfwd/test_dir_bcast.py +++ b/tests/ipfwd/test_dir_bcast.py @@ -8,7 +8,7 @@ pytest.mark.topology('t0') ] -def test_dir_bcast(duthosts, rand_one_dut_hostname, ptfhost, tbinfo, fib): +def test_dir_bcast(duthosts, rand_one_dut_hostname, ptfhost, tbinfo): duthost = duthosts[rand_one_dut_hostname] support_testbed_types = frozenset(['t0', 't0-16', 't0-52', 't0-56', 't0-64', 't0-64-32', 't0-116']) testbed_type = tbinfo['topo']['name']