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_protocols_nhrp.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_protocols_nhrp.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_nhrp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_protocols_nhrp.py b/smoketest/scripts/cli/test_protocols_nhrp.py index 59252875b..7dbe836f7 100755 --- a/smoketest/scripts/cli/test_protocols_nhrp.py +++ b/smoketest/scripts/cli/test_protocols_nhrp.py @@ -54,7 +54,7 @@ class TestProtocolsNHRP(VyOSUnitTestSHIM.TestCase): self.cli_set(tunnel_path + [tunnel_if, "address", "172.16.253.134/29"]) self.cli_set(tunnel_path + [tunnel_if, "encapsulation", tunnel_encapsulation]) self.cli_set(tunnel_path + [tunnel_if, "source-address", tunnel_source]) - 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 |