Skip to content

Commit

Permalink
tests: fix warning when checking ospfv3 convergence
Browse files Browse the repository at this point in the history
The following error is shown when running the OSPFv3 tests

2021-03-16 23:37:44,792 INFO: Function returned global name 'data_rid' is not defined
2021-03-16 23:37:44,792 INFO: Retry [#1] after sleeping for 2s
2021-03-16 23:37:46,794 INFO: Verifying OSPF6 neighborship on router r1:
2021-03-16 23:37:46,993 INFO: Output for command [ show ipv6 ospf6 neighbor ] on router r1:
Neighbor ID     Pri    DeadTime    State/IfState         Duration I/F[State]
2.2.2.2           1    00:00:03     Full/PointToPoint    00:00:01 r1-r2-eth0[PointToPoint]

Fix the "data_rid" warning by using the correct variable

Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
  • Loading branch information
ckishimo committed Mar 16, 2021
1 parent 800cc91 commit 9b1bb52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/topotests/lib/ospf.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,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
Expand Down

0 comments on commit 9b1bb52

Please sign in to comment.