summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_rpki_topo1
diff options
context:
space:
mode:
authorY Bharath <y.bharath@samsung.com>2024-06-12 10:26:34 +0200
committerY Bharath <y.bharath@samsung.com>2024-06-12 10:26:34 +0200
commita63bfb75669780df7ce29201c87db77b83c6f60a (patch)
tree90ca6e3876d2775c6855ddfdaa1ec3be0b0b4cf6 /tests/topotests/bgp_rpki_topo1
parentMerge pull request #16190 from trots/master (diff)
downloadfrr-a63bfb75669780df7ce29201c87db77b83c6f60a.tar.xz
frr-a63bfb75669780df7ce29201c87db77b83c6f60a.zip
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_rpki_topo1')
-rw-r--r--tests/topotests/bgp_rpki_topo1/test_bgp_rpki_topo1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/bgp_rpki_topo1/test_bgp_rpki_topo1.py b/tests/topotests/bgp_rpki_topo1/test_bgp_rpki_topo1.py
index f52b28a06..7b40bbdae 100644
--- a/tests/topotests/bgp_rpki_topo1/test_bgp_rpki_topo1.py
+++ b/tests/topotests/bgp_rpki_topo1/test_bgp_rpki_topo1.py
@@ -44,7 +44,7 @@ def setup_module(mod):
router_list = tgen.routers()
- for i, (rname, router) in enumerate(router_list.items(), 1):
+ for _, (rname, router) in enumerate(router_list.items(), 1):
router.load_config(
TopoRouter.RD_ZEBRA, os.path.join(CWD, "{}/zebra.conf".format(rname))
)