diff options
author | Christian Breunig <christian@breunig.cc> | 2023-02-26 07:54:24 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-02-26 11:57:14 +0100 |
commit | a721e8b5067d78886f4dcc396c831ed50eb5472c (patch) | |
tree | 355ad921f243a4319cd92e329318c605bbd12ba7 /smoketest/scripts/cli/test_vpn_ipsec.py | |
parent | 54c36e435049ed8f7f248adab171cb114eab1e10 (diff) | |
download | vyos-1x-a721e8b5067d78886f4dcc396c831ed50eb5472c.tar.gz vyos-1x-a721e8b5067d78886f4dcc396c831ed50eb5472c.zip |
smoketest: tunnel: T5034: adjust to new multicast CLI syntax
Commit 54c36e43 (tunnel: T5034: migrate "multicast enable" CLI node to
enable-multicast) changed the syntax on the CLI. This commits changes the
testcase to make use of the new syntax.
Diffstat (limited to 'smoketest/scripts/cli/test_vpn_ipsec.py')
-rwxr-xr-x | smoketest/scripts/cli/test_vpn_ipsec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_vpn_ipsec.py b/smoketest/scripts/cli/test_vpn_ipsec.py index c8634dd57..61363b853 100755 --- a/smoketest/scripts/cli/test_vpn_ipsec.py +++ b/smoketest/scripts/cli/test_vpn_ipsec.py @@ -335,7 +335,7 @@ class TestVPNIPsec(VyOSUnitTestSHIM.TestCase): self.cli_set(tunnel_path + [tunnel_if, 'address', '172.16.253.134/29']) self.cli_set(tunnel_path + [tunnel_if, 'encapsulation', 'gre']) self.cli_set(tunnel_path + [tunnel_if, 'source-address', '192.0.2.1']) - self.cli_set(tunnel_path + [tunnel_if, 'multicast', 'enable']) + self.cli_set(tunnel_path + [tunnel_if, 'enable-multicast']) self.cli_set(tunnel_path + [tunnel_if, 'parameters', 'ip', 'key', '1']) # NHRP |