diff options
| author | Christian Hopps <chopps@labn.net> | 2021-08-27 14:46:20 -0400 |
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2021-08-27 14:46:20 -0400 |
| commit | 0779f1774289d8bfbf90bf0cb605480c39342dd2 (patch) | |
| tree | 858d826af0db01f6eb1f90e622390a73d2d7e128 | |
| parent | 3e386e98b311908c872c6e4b16f24559e473032a (diff) | |
tests: fix ospf ASBR summary test
Previously the check did nothing as the input_dict parameter was wrong.
Signed-off-by: Christian Hopps <chopps@labn.net>
| -rw-r--r-- | tests/topotests/ospf_basic_functionality/test_ospf_asbr_summary_topo1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_asbr_summary_topo1.py b/tests/topotests/ospf_basic_functionality/test_ospf_asbr_summary_topo1.py index e61a6b5905..a3f1bc76ff 100644 --- a/tests/topotests/ospf_basic_functionality/test_ospf_asbr_summary_topo1.py +++ b/tests/topotests/ospf_basic_functionality/test_ospf_asbr_summary_topo1.py @@ -1384,7 +1384,7 @@ def test_ospf_type5_summary_tc45_p0(request): step("Verify that summary lsa is withdrawn from R1 and deleted from R0.") dut = "r1" - result = verify_ospf_rib(tgen, dut, input_dict, expected=False) + result = verify_ospf_rib(tgen, dut, input_dict_summary, expected=False) assert ( result is not True ), "Testcase {} : Failed \n Error: " "Routes still present in OSPF RIB {}".format( |
