summaryrefslogtreecommitdiff
path: root/tests/topotests/bgp_redistribute_table
diff options
context:
space:
mode:
authorY Bharath <y.bharath@samsung.com>2024-06-19 12:51:05 +0530
committerY Bharath <y.bharath@samsung.com>2024-07-15 13:09:32 +0530
commit5b06a17715c63f7639640a97be338ace8fc76f79 (patch)
tree2846ad24816fde67523c45ca021d5ffe3e356f27 /tests/topotests/bgp_redistribute_table
parent659741f3fa682d0d32ab24a178794be4ef2e0220 (diff)
tests: Refactoring FRR test suites
Signed-off-by: y-bharath14 <y.bharath@samsung.com>
Diffstat (limited to 'tests/topotests/bgp_redistribute_table')
-rw-r--r--tests/topotests/bgp_redistribute_table/test_bgp_redistribute_table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/bgp_redistribute_table/test_bgp_redistribute_table.py b/tests/topotests/bgp_redistribute_table/test_bgp_redistribute_table.py
index 08b70ae0da..614610ccd6 100644
--- a/tests/topotests/bgp_redistribute_table/test_bgp_redistribute_table.py
+++ b/tests/topotests/bgp_redistribute_table/test_bgp_redistribute_table.py
@@ -86,7 +86,7 @@ def _router_json_cmp_exact_filter(router, cmd, expected):
json_output = json.loads(output)
# filter out tableVersion, version, nhVrfId and vrfId
- for route, attrs in json_output.items():
+ for _, attrs in json_output.items():
for attr in attrs:
if "table" in attr:
attr.pop("table")