diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-08-04 21:23:04 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-08-05 07:54:22 +0200 |
commit | dfb4ce2a5aa4b2d8726ed08cd3ef301e611f57de (patch) | |
tree | 7a0b7161c051fb097badffd1ec9b64e6122ec1c9 /smoketest | |
parent | de04107fbd015ee17b8899aefe2b86b9cb6efd83 (diff) | |
download | vyos-1x-dfb4ce2a5aa4b2d8726ed08cd3ef301e611f57de.tar.gz vyos-1x-dfb4ce2a5aa4b2d8726ed08cd3ef301e611f57de.zip |
bgp: T4257: bugfixes after renaming "local-as" to "system-as"
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 f69832cb4..cefaad64a 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -929,7 +929,7 @@ class TestProtocolsBGP(VyOSUnitTestSHIM.TestCase): remote_asn = '500' local_asn = '400' - self.cli_set(base_path + ['local-as', ASN]) + self.cli_set(base_path + ['system-as', ASN]) self.cli_set(base_path + ['neighbor', neighbor, 'remote-as', ASN]) self.cli_set(base_path + ['neighbor', neighbor, 'local-as', local_asn]) |