summaryrefslogtreecommitdiff
path: root/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
diff options
context:
space:
mode:
authorChristian Hopps <chopps@labn.net>2021-09-03 08:43:32 -0400
committerChristian Hopps <chopps@labn.net>2021-09-04 09:04:47 -0400
commit4953ca977f3a5de8109ee6353ad07f816ca1774c (patch)
tree447a3e8475b38653269d2cb3e98ec0118c783bf3 /tests/topotests/ospf_basic_functionality/test_ospf_lan.py
parent57f774f56d25f2906dc4072488572fe274ed3910 (diff)
tests: cleanup - remove unused imports
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'tests/topotests/ospf_basic_functionality/test_ospf_lan.py')
-rw-r--r--tests/topotests/ospf_basic_functionality/test_ospf_lan.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_lan.py b/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
index d85267a364..b80da41bec 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
@@ -26,9 +26,7 @@ import os
import sys
import time
import pytest
-import json
from copy import deepcopy
-import ipaddress
from lib.topotest import frr_unicode
# Save the Current Working Directory to find configuration files.
@@ -38,7 +36,6 @@ sys.path.append(os.path.join(CWD, "../lib/"))
# pylint: disable=C0413
# Import topogen and topotest helpers
-from lib.micronet_compat import Topo
from lib.topogen import Topogen, get_topogen
# Import topoJson from lib, to create topology and initial configuration
@@ -48,24 +45,17 @@ from lib.common_config import (
create_interfaces_cfg,
write_test_footer,
reset_config_on_routers,
- verify_rib,
- create_static_routes,
- check_address_types,
step,
- create_route_maps,
shutdown_bringup_interface,
stop_router,
start_router,
topo_daemons,
)
-from lib.bgp import verify_bgp_convergence, create_router_bgp
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_ospf_neighbor,
- config_ospf_interface,
clear_ospf,
- verify_ospf_rib,
create_router_ospf,
verify_ospf_interface,
)