diff options
author | Russ White <russ@riw.us> | 2023-07-11 16:19:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 16:19:30 +0200 |
commit | 220d7b1a899b74eee18c9f8d4ff9a4f38ec2c0fc (patch) | |
tree | c4df6c35be9a35b570731adad5a3dccb7a625be6 /tests | |
parent | Merge pull request #13955 from opensourcerouting/fix/deprecate_orf_bgpd_130 (diff) | |
parent | bgpd: Check if cluster list attribute is not received via eBGP session (diff) | |
download | frr-220d7b1a899b74eee18c9f8d4ff9a4f38ec2c0fc.tar.xz frr-220d7b1a899b74eee18c9f8d4ff9a4f38ec2c0fc.zip |
Merge pull request #13948 from opensourcerouting/fix/bgpd_rfc7606_adjustments
bgpd: Some rfc7606 adjustments
Diffstat (limited to 'tests')
-rw-r--r-- | tests/topotests/bgp_path_attribute_discard/test_bgp_path_attribute_discard.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/topotests/bgp_path_attribute_discard/test_bgp_path_attribute_discard.py b/tests/topotests/bgp_path_attribute_discard/test_bgp_path_attribute_discard.py index ebaab6034..c97cd0bdd 100644 --- a/tests/topotests/bgp_path_attribute_discard/test_bgp_path_attribute_discard.py +++ b/tests/topotests/bgp_path_attribute_discard/test_bgp_path_attribute_discard.py @@ -83,7 +83,7 @@ def test_bgp_path_attribute_discard(): "paths": [ { "valid": True, - "originatorId": "10.0.0.2", + "originatorId": None, "community": { "string": "65001:102", }, @@ -98,12 +98,12 @@ def test_bgp_path_attribute_discard(): _, result = topotest.run_and_expect(test_func, None, count=30, wait=0.5) assert result is None, "Failed bgp convergence" - step("Discard atomic-aggregate, community, and originator-id attributes from peer1") + step("Discard atomic-aggregate, and community attributes from peer1") r1.vtysh_cmd( """ configure terminal router bgp - neighbor 10.0.0.2 path-attribute discard 6 8 9 + neighbor 10.0.0.2 path-attribute discard 6 8 """ ) @@ -137,7 +137,7 @@ def test_bgp_path_attribute_discard(): _, result = topotest.run_and_expect(test_func, None, count=30, wait=0.5) assert ( result is None - ), "Failed to discard path attributes (atomic-aggregate, community, and originator-id)" + ), "Failed to discard path attributes (atomic-aggregate, community)" def test_memory_leak(): |