Skip to content

Commit

Permalink
Fix show command column change issue (sonic-net#3645)
Browse files Browse the repository at this point in the history
  • Loading branch information
FengPan-Frank authored Dec 2, 2024
1 parent 9cd6c8d commit f6b9912
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions show/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2420,8 +2420,8 @@ def bmp_neighbor_table(db):
values["peer_addr"],
values["peer_asn"],
values["peer_rd"],
values["peer_port"],
values["local_addr"],
values["remote_port"],
values["local_ip"],
values["local_asn"],
values["local_port"],
values["sent_cap"],
Expand Down
8 changes: 4 additions & 4 deletions tests/show_bmp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def test_show_bmp_neighbor_table(self):
{"peer_addr": "10.0.0.61",
"peer_asn": "64915",
"peer_rd": "300",
"peer_port": "5000",
"local_addr": "10.1.0.32",
"remote_port": "5000",
"local_ip": "10.1.0.32",
"local_asn": "65100",
"local_port": "6000",
"sent_cap": "supports-mpbgp,supports-graceful-restart",
Expand All @@ -38,8 +38,8 @@ def test_show_bmp_neighbor_table(self):
{"peer_addr": "10.0.0.62",
"peer_asn": "64915",
"peer_rd": "300",
"peer_port": "5000",
"local_addr": "10.1.0.32",
"remote_port": "5000",
"local_ip": "10.1.0.32",
"local_asn": "65100",
"local_port": "6000",
"sent_cap": "supports-mpbgp,supports-graceful-restart",
Expand Down

0 comments on commit f6b9912

Please sign in to comment.