diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-04-16 21:33:20 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-16 21:33:20 +0300 |
| commit | eee1fca3eb7a4ed8182f1020ef0ed13f4279c47d (patch) | |
| tree | e008186680017c3cb6f5dc5748818717b163e57c /tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py | |
| parent | e88e1c0e891bbbfe532ad9d6e0afdfdf7c911207 (diff) | |
| parent | c42ac5f64b0e03099b147d5d129a65d067dd0164 (diff) | |
Merge pull request #13141 from mjstapp/fix_ospf_json_keys
ospfd: remove deprecated json attrs for neighbor show
Diffstat (limited to 'tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py')
| -rw-r--r-- | tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py b/tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py index 858412f1d3..4f797743e7 100644 --- a/tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py +++ b/tests/topotests/ospf_basic_functionality/test_ospf_p2mp.py @@ -411,17 +411,17 @@ def test_ospf_nbrs(tgen): "neighbors": { "100.1.1.1": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.2": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.3": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], } @@ -434,17 +434,17 @@ def test_ospf_nbrs(tgen): "neighbors": { "100.1.1.0": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.2": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.3": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], } @@ -457,17 +457,17 @@ def test_ospf_nbrs(tgen): "neighbors": { "100.1.1.0": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.1": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.3": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], } @@ -480,17 +480,17 @@ def test_ospf_nbrs(tgen): "neighbors": { "100.1.1.0": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.1": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], "100.1.1.2": [ { - "state": "Full/DROther", + "nbrState": "Full/DROther", } ], } |
