diff options
author | Christian Breunig <christian@breunig.cc> | 2023-10-30 16:23:30 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-10-30 16:31:54 +0100 |
commit | cc7ba8824a5e9ec818f0bbe7fb85e1713a591527 (patch) | |
tree | 5ee5ddff7aa9927ca3dbad00e4fa8236a626af35 /smoketest/scripts/cli | |
parent | 78e00bf4099bfac2164ef2075acce8169c40c9c3 (diff) | |
download | vyos-1x-cc7ba8824a5e9ec818f0bbe7fb85e1713a591527.tar.gz vyos-1x-cc7ba8824a5e9ec818f0bbe7fb85e1713a591527.zip |
vxlan: T5699: migrate "external" CLI know to "parameters external"
As we have a bunch of options under "paramteres" already and "external" is
clearly one of them it should be migrated under that node as well.
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_vxlan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_vxlan.py b/smoketest/scripts/cli/test_interfaces_vxlan.py index e9c9e68fd..cf05148ae 100755 --- a/smoketest/scripts/cli/test_interfaces_vxlan.py +++ b/smoketest/scripts/cli/test_interfaces_vxlan.py @@ -107,7 +107,7 @@ class VXLANInterfaceTest(BasicInterfaceTest.TestCase): def test_vxlan_external(self): interface = 'vxlan0' source_address = '192.0.2.1' - 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-address', source_address]) # Both 'VNI' and 'external' can not be specified at the same time. @@ -150,7 +150,7 @@ class VXLANInterfaceTest(BasicInterfaceTest.TestCase): '31': '10031', } - 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]) for vlan, vni in vlan_to_vni.items(): |