From: Donatas Abraitis Date: Thu, 3 Apr 2025 11:01:20 +0000 (+0300) Subject: tests: Fix typo when configuring delayopen timer X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=2bd650497b4cbeecfa19be0b5d380687ec5ce215;p=matthieu%2Ffrr.git tests: Fix typo when configuring delayopen timer `"` was accidentally added, and random tests failures happening. Fixes: a4f61b78dd382c438ff4fec2fda7450ecc890edf ("tests: Check if routes are marked as stale and retained with N-bit for GR") Signed-off-by: Donatas Abraitis (cherry picked from commit 55d88ee3de422ff6dc206c6ebe5ba96b3ff67967) --- diff --git a/tests/topotests/bgp_gr_notification/test_bgp_gr_notification.py b/tests/topotests/bgp_gr_notification/test_bgp_gr_notification.py index 874ad09264..e2bcd004d4 100644 --- a/tests/topotests/bgp_gr_notification/test_bgp_gr_notification.py +++ b/tests/topotests/bgp_gr_notification/test_bgp_gr_notification.py @@ -195,14 +195,14 @@ def test_bgp_administrative_reset_gr(): step("Reset and delay the session establishement for R1") r1.vtysh_cmd( """ - configure terminal" + configure terminal router bgp neighbor 192.168.255.2 timers delayopen 60 """ ) r2.vtysh_cmd( """ - configure terminal" + configure terminal router bgp neighbor 192.168.255.1 timers delayopen 60 """