summaryrefslogtreecommitdiff
path: root/tests/bgpd
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2023-10-31 10:40:23 -0400
committerGitHub <noreply@github.com>2023-10-31 10:40:23 -0400
commit95f841c9bee8d70a02bf2f3c99d5596730668693 (patch)
treeb74675387bb1151a43537f434ac68065ef216aae /tests/bgpd
parent43cac6fb6084f9a6c81cc940e8b1951375154204 (diff)
parent322462920e2a2c8b73191c6eb5157d64cf4a593e (diff)
Merge pull request #14661 from opensourcerouting/feature/enable_enforce_first_as_by_default
bgpd: Enable `enforce-first-as` by default
Diffstat (limited to 'tests/bgpd')
-rw-r--r--tests/bgpd/test_peer_attr.c5
-rw-r--r--tests/bgpd/test_peer_attr.py1
2 files changed, 0 insertions, 6 deletions
diff --git a/tests/bgpd/test_peer_attr.c b/tests/bgpd/test_peer_attr.c
index af0b984ffd..231ecd2066 100644
--- a/tests/bgpd/test_peer_attr.c
+++ b/tests/bgpd/test_peer_attr.c
@@ -283,11 +283,6 @@ static struct test_peer_attr test_peer_attrs[] = {
.type = PEER_AT_GLOBAL_FLAG,
},
{
- .cmd = "enforce-first-as",
- .u.flag = PEER_FLAG_ENFORCE_FIRST_AS,
- .type = PEER_AT_GLOBAL_FLAG,
- },
- {
.cmd = "local-as",
.peer_cmd = "local-as 1",
.group_cmd = "local-as 2",
diff --git a/tests/bgpd/test_peer_attr.py b/tests/bgpd/test_peer_attr.py
index eb57618434..bd8b06e2f0 100644
--- a/tests/bgpd/test_peer_attr.py
+++ b/tests/bgpd/test_peer_attr.py
@@ -15,7 +15,6 @@ TestFlag.okfail("peer\\capability extended-nexthop")
TestFlag.okfail("peer\\description")
TestFlag.okfail("peer\\disable-connected-check")
TestFlag.okfail("peer\\dont-capability-negotiate")
-TestFlag.okfail("peer\\enforce-first-as")
TestFlag.okfail("peer\\local-as")
TestFlag.okfail("peer\\local-as 1 no-prepend")
TestFlag.okfail("peer\\local-as 1 no-prepend replace-as")