diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-01 08:50:40 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-11-01 08:53:54 +0100 |
commit | 03e5ab66610770cb58e24aa6e1309264a091d812 (patch) | |
tree | 5d0873cd411943d7bdf295342a7255ce6844b136 /smoketest/scripts/cli/test_interfaces_vxlan.py | |
parent | 4766fc5aae39ccc9c7619c89f0fc974bb9309d89 (diff) | |
download | vyos-1x-03e5ab66610770cb58e24aa6e1309264a091d812.tar.gz vyos-1x-03e5ab66610770cb58e24aa6e1309264a091d812.zip |
smoketest: vxlan: T5699: fix "external" CLI option
After commit cc7ba8824 ('vxlan: T5699: migrate "external" CLI know to
"parameters external"') We also need to adjust the testcase for ARP/ND
suppression.
(cherry picked from commit cb2f72dbd10a11f99913cc60044460f18381f770)
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_vxlan.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_vxlan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_vxlan.py b/smoketest/scripts/cli/test_interfaces_vxlan.py index 3a8b8ab99..17e4fc36f 100755 --- a/smoketest/scripts/cli/test_interfaces_vxlan.py +++ b/smoketest/scripts/cli/test_interfaces_vxlan.py @@ -189,7 +189,7 @@ class VXLANInterfaceTest(BasicInterfaceTest.TestCase): interface = 'vxlan555' source_interface = 'eth0' - self.cli_set(self._base_path + [interface, 'external']) + self.cli_set(self._base_path + [interface, 'parameters', 'external']) self.cli_set(self._base_path + [interface, 'source-interface', source_interface]) self.cli_set(self._base_path + [interface, 'parameters', 'neighbor-suppress']) |