From f66e42011abb5942e9fce406c7ccf63c053f3347 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Mon, 25 Oct 2021 08:00:23 -0400 Subject: [PATCH] tests: Fix accidental 10 second wait Recent commit 83f325901aec28774ecb had a accidental turn of a 1 second wait into a 10 second wait between retries. 10 seconds is too long. Signed-off-by: Donald Sharp --- tests/topotests/bfd_isis_topo1/test_bfd_isis_topo1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/bfd_isis_topo1/test_bfd_isis_topo1.py b/tests/topotests/bfd_isis_topo1/test_bfd_isis_topo1.py index 863c296927..27a4419329 100644 --- a/tests/topotests/bfd_isis_topo1/test_bfd_isis_topo1.py +++ b/tests/topotests/bfd_isis_topo1/test_bfd_isis_topo1.py @@ -193,7 +193,7 @@ def test_bfd_isis_interface_failure_rt2_step3(): # initial 2 seconds to let the CI not suffer. # TODO: add check for array size router_compare_json_output( - "rt1", "show ip route isis json", "step3/show_ip_route_rt2_down.ref", 20, 10 + "rt1", "show ip route isis json", "step3/show_ip_route_rt2_down.ref", 20, 1 ) router_compare_json_output( "rt1", "show ipv6 route isis json", "step3/show_ipv6_route_rt2_down.ref", 20, 1 -- 2.39.5