diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2021-03-20 20:11:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-20 20:11:16 -0400 |
| commit | 6dfe243c3884c6ff8be2d72bfb4e8c2ebdf6632c (patch) | |
| tree | e0753d403b2e2df92700475d989adebfb7868b27 /tests/topotests/lib/ospf.py | |
| parent | 13c0040db5c92770ffba662f0f365e9aa159e70f (diff) | |
| parent | d205f01e1d5641ed81f37ccf081e1a93af9da34c (diff) | |
Merge pull request #8278 from ckishimo/ospfv3_iface
ospf6d: fix iface commands lost when removing from area
Diffstat (limited to 'tests/topotests/lib/ospf.py')
| -rw-r--r-- | tests/topotests/lib/ospf.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/topotests/lib/ospf.py b/tests/topotests/lib/ospf.py index 79e4d97448..9f642411b5 100644 --- a/tests/topotests/lib/ospf.py +++ b/tests/topotests/lib/ospf.py @@ -344,10 +344,9 @@ def config_ospf_interface(tgen, topo, input_dict=None, build=False, load_config= for lnk in input_dict[router]["links"].keys(): if "ospf" not in input_dict[router]["links"][lnk]: logger.debug( - "Router %s: ospf configs is not present in" - "input_dict, passed input_dict", - router, - input_dict, + "Router %s: ospf config is not present in" + "input_dict", + router ) continue ospf_data = input_dict[router]["links"][lnk]["ospf"] @@ -724,7 +723,7 @@ def verify_ospf6_neighbor(tgen, topo): nh_state = neighbor["state"] break else: - return "[DUT: {}] OSPF6 peer {} missing".format(router, data_rid) + return "[DUT: {}] OSPF6 peer {} missing".format(router, ospf_nbr_rid) if nh_state == "Full": no_of_peer += 1 |
