diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-19 11:10:26 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-08-19 11:10:26 +0200 |
commit | 7bae85fd670dce0c4708011af7523f1e56c1054a (patch) | |
tree | 3175794a4d995d0ff1831a43ebb2b9d966458a09 /smoketest | |
parent | 0e1bc3d4e92dbb361f392bb8551be8d5b96fbdc6 (diff) | |
download | vyos-1x-7bae85fd670dce0c4708011af7523f1e56c1054a.tar.gz vyos-1x-7bae85fd670dce0c4708011af7523f1e56c1054a.zip |
bgp: T5466: rename type on CLI per-nexhop -> per-nexthop for l3vpn MPLS labels
This fixes a CLI typo added in commit 77ef9f800 ("T5466: L3VPN label allocation
mode").
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bgp.py b/smoketest/scripts/cli/test_protocols_bgp.py index b34ab53c2..77952d8d9 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -868,7 +868,7 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): self.cli_set(base_path + ['address-family', afi, 'export', 'vpn']) self.cli_set(base_path + ['address-family', afi, 'import', 'vpn']) self.cli_set(base_path + ['address-family', afi, 'label', 'vpn', 'export', label]) - self.cli_set(base_path + ['address-family', afi, 'label', 'vpn', 'allocation-mode', 'per-nexhop']) + self.cli_set(base_path + ['address-family', afi, 'label', 'vpn', 'allocation-mode', 'per-nexthop']) self.cli_set(base_path + ['address-family', afi, 'rd', 'vpn', 'export', rd]) self.cli_set(base_path + ['address-family', afi, 'route-map', 'vpn', 'export', route_map_out]) self.cli_set(base_path + ['address-family', afi, 'route-map', 'vpn', 'import', route_map_in]) |