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:52:47 +0100 |
commit | cb2f72dbd10a11f99913cc60044460f18381f770 (patch) | |
tree | d71083f077b64a7637f6f4f0aaeab51f1abc0cd2 | |
parent | eabb9c460cfadb37e8a7ccb3098c5fa1cfd9ae1a (diff) | |
download | vyos-1x-cb2f72dbd10a11f99913cc60044460f18381f770.tar.gz vyos-1x-cb2f72dbd10a11f99913cc60044460f18381f770.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.
-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']) |