summaryrefslogtreecommitdiff
path: root/tests/topotests/bgp_auth/test_bgp_auth2.py
diff options
context:
space:
mode:
authorY Bharath <y.bharath@samsung.com>2024-06-12 13:56:34 +0530
committerY Bharath <y.bharath@samsung.com>2024-06-12 13:56:34 +0530
commita63bfb75669780df7ce29201c87db77b83c6f60a (patch)
tree90ca6e3876d2775c6855ddfdaa1ec3be0b0b4cf6 /tests/topotests/bgp_auth/test_bgp_auth2.py
parent82dcb1d63e7366ee2b3bd1d6896f64369cbe4d4a (diff)
tests: supress unused variables at topotests
For code maintainability, suppressed unused variables with "_" Signed-off-by: y-bharath14 <y.bharath@samsung.com>
Diffstat (limited to 'tests/topotests/bgp_auth/test_bgp_auth2.py')
-rw-r--r--tests/topotests/bgp_auth/test_bgp_auth2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/bgp_auth/test_bgp_auth2.py b/tests/topotests/bgp_auth/test_bgp_auth2.py
index 6b92036727..2551c1c35b 100644
--- a/tests/topotests/bgp_auth/test_bgp_auth2.py
+++ b/tests/topotests/bgp_auth/test_bgp_auth2.py
@@ -156,7 +156,7 @@ def setup_module(mod):
router_list = tgen.routers()
# For all registered routers, load the zebra configuration file
- for rname, router in router_list.items():
+ for _, router in router_list.items():
router.load_config(TopoRouter.RD_ZEBRA, "zebra.conf")
router.load_config(TopoRouter.RD_OSPF, "")
router.load_config(TopoRouter.RD_BGP, "")