diff options
author | Christian Hopps <chopps@labn.net> | 2021-09-03 14:43:32 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2021-09-04 15:04:47 +0200 |
commit | 4953ca977f3a5de8109ee6353ad07f816ca1774c (patch) | |
tree | 447a3e8475b38653269d2cb3e98ec0118c783bf3 /tests/topotests/msdp_mesh_topo1 | |
parent | tests: Disable test which fails under micronet (diff) | |
download | frr-4953ca977f3a5de8109ee6353ad07f816ca1774c.tar.xz frr-4953ca977f3a5de8109ee6353ad07f816ca1774c.zip |
tests: cleanup - remove unused imports
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'tests/topotests/msdp_mesh_topo1')
-rw-r--r-- | tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py b/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py index c32800c93..dc08ae1af 100644 --- a/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py +++ b/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py @@ -28,10 +28,8 @@ test_msdp_mesh_topo1.py: Test the FRR PIM MSDP mesh groups. import os import sys -import json from functools import partial import pytest -import socket # Save the Current Working Directory to find configuration files. CWD = os.path.dirname(os.path.realpath(__file__)) @@ -41,7 +39,6 @@ sys.path.append(os.path.join(CWD, "../")) # Import topogen and topotest helpers from lib import topotest # Required to instantiate the topology builder class. -from lib.micronet_compat import Topo from lib.topogen import Topogen, TopoRouter, get_topogen from lib.topolog import logger |