summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2021-05-06 21:49:19 +0300
committerGitHub <noreply@github.com>2021-05-06 20:49:19 +0200
commit401b21d1d0d726a4bfab197734aec0866f0cb32c (patch)
tree7feda56caab9a393fd86bfa4b3ccdf0b7107152c /smoketest
parentd9a05131c051efa06387ad687b94c804489396d3 (diff)
downloadvyos-1x-401b21d1d0d726a4bfab197734aec0866f0cb32c.tar.gz
vyos-1x-401b21d1d0d726a4bfab197734aec0866f0cb32c.zip
smoketest: T3517: Fix bfd test for equuleus FRR 7.5.1
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_protocols_bfd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bfd.py b/smoketest/scripts/cli/test_protocols_bfd.py
index 996a54a9d..7f17c12ff 100755
--- a/smoketest/scripts/cli/test_protocols_bfd.py
+++ b/smoketest/scripts/cli/test_protocols_bfd.py
@@ -121,8 +121,8 @@ class TestProtocolsBFD(unittest.TestCase):
self.assertIn(f' receive-interval {peer_config["intv_rx"]}', peerconfig)
if 'intv_tx' in peer_config:
self.assertIn(f' transmit-interval {peer_config["intv_tx"]}', peerconfig)
- if 'shutdown' not in peer_config:
- self.assertIn(f' no shutdown', peerconfig)
+ if 'shutdown' in peer_config:
+ self.assertIn(f' shutdown', peerconfig)
if __name__ == '__main__':
unittest.main(verbosity=2)