Skip to content

Commit

Permalink
Remove dependency of deprecated fib plugin for test_dir_bcast.py (#3000)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
wangxin authored Feb 19, 2021
1 parent cb81ec8 commit a1a713e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ipfwd/test_dir_bcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit a1a713e

Please sign in to comment.