From 4953ca977f3a5de8109ee6353ad07f816ca1774c Mon Sep 17 00:00:00 2001 From: Christian Hopps Date: Fri, 3 Sep 2021 08:43:32 -0400 Subject: tests: cleanup - remove unused imports Signed-off-by: Christian Hopps --- .../ospfv3_basic_functionality/test_ospfv3_ecmp.py | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'tests/topotests/ospfv3_basic_functionality/test_ospfv3_ecmp.py') diff --git a/tests/topotests/ospfv3_basic_functionality/test_ospfv3_ecmp.py b/tests/topotests/ospfv3_basic_functionality/test_ospfv3_ecmp.py index 50f05a2eca..9353cd923b 100644 --- a/tests/topotests/ospfv3_basic_functionality/test_ospfv3_ecmp.py +++ b/tests/topotests/ospfv3_basic_functionality/test_ospfv3_ecmp.py @@ -26,10 +26,6 @@ import os import sys import time import pytest -import json -from copy import deepcopy -from ipaddress import IPv4Address -from lib.topotest import frr_unicode # Save the Current Working Directory to find configuration files. CWD = os.path.dirname(os.path.realpath(__file__)) @@ -39,7 +35,6 @@ sys.path.append(os.path.join(CWD, "../lib/")) # pylint: disable=C0413 # Import topogen and topotest helpers from lib.topogen import Topogen, get_topogen -import ipaddress # Import topoJson from lib, to create topology and initial configuration from lib.common_config import ( @@ -50,27 +45,20 @@ from lib.common_config import ( verify_rib, create_static_routes, step, - create_route_maps, shutdown_bringup_interface, - create_interfaces_cfg, topo_daemons, get_frr_ipv6_linklocal, ) from lib.topolog import logger -from lib.topojson import build_topo_from_json, build_config_from_json +from lib.topojson import build_config_from_json from lib.ospf import ( verify_ospf6_neighbor, - config_ospf_interface, - clear_ospf, verify_ospf6_rib, create_router_ospf, - verify_ospf6_interface, - verify_ospf6_database, config_ospf6_interface, ) -from ipaddress import IPv6Address pytestmark = [pytest.mark.ospfd, pytest.mark.staticd] -- cgit v1.2.3