diff options
| author | Y Bharath <y.bharath@samsung.com> | 2024-06-15 22:36:32 +0530 |
|---|---|---|
| committer | Y Bharath <y.bharath@samsung.com> | 2024-06-17 15:42:59 +0530 |
| commit | 8381dbd9e258825daff4802c4c44b3d435a7b7e3 (patch) | |
| tree | 9e2884a629e76f7b68ea9e40a98c6db7b5411814 /tests/topotests/grpc_basic/test_basic_grpc.py | |
| parent | 045029e2442dbca3b6e7685438d171fa05c0f968 (diff) | |
tests: Avoid importing unused modules
Signed-off-by: y-bharath14 <y.bharath@samsung.com>
Diffstat (limited to 'tests/topotests/grpc_basic/test_basic_grpc.py')
| -rw-r--r-- | tests/topotests/grpc_basic/test_basic_grpc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/topotests/grpc_basic/test_basic_grpc.py b/tests/topotests/grpc_basic/test_basic_grpc.py index cf1c6d0ec7..5ff2894fd1 100644 --- a/tests/topotests/grpc_basic/test_basic_grpc.py +++ b/tests/topotests/grpc_basic/test_basic_grpc.py @@ -19,7 +19,6 @@ import pytest from lib.common_config import step from lib.micronet import commander from lib.topogen import Topogen, TopoRouter -from lib.topolog import logger from lib.topotest import json_cmp CWD = os.path.dirname(os.path.realpath(__file__)) @@ -60,7 +59,7 @@ def tgen(request): tgen.start_topology() router_list = tgen.routers() - for rname, router in router_list.items(): + for _, router in router_list.items(): router.load_config(TopoRouter.RD_ZEBRA, "zebra.conf", f"-M grpc:{GRPCP_ZEBRA}") router.load_config(TopoRouter.RD_STATIC, "", f"-M grpc:{GRPCP_STATICD}") # router.load_config(TopoRouter.RD_BFDD, "", f"-M grpc:{GRPCP_BFDD}") |
