aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_memif.py
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2019-02-28 09:00:09 -0800
committerNeale Ranns <nranns@cisco.com>2019-03-01 09:28:09 +0000
commita279d9cf615bd60439085ba103125e6f2fa3b27c (patch)
tree53544c5534b573251d1067bb72078d2ff6ebce00 /test/test_memif.py
parente8fece85e2b6190a1ebdc05c10cd79e43f385918 (diff)
Tests: Remove all wildcard imports.
They mask dependencies and confuse third party tools. Change-Id: I24ee16bfa0d746a8e8cb99891ba8b20523048b69 Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_memif.py')
-rw-r--r--test/test_memif.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_memif.py b/test/test_memif.py
index 6d462bae018..6da8bf541d3 100644
--- a/test/test_memif.py
+++ b/test/test_memif.py
@@ -1,3 +1,4 @@
+import socket
import unittest
from scapy.layers.l2 import Ether
@@ -5,7 +6,8 @@ from scapy.layers.inet import IP, ICMP
from framework import VppTestCase, VppTestRunner, running_extended_tests
from remote_test import RemoteClass, RemoteVppTestCase
-from vpp_memif import *
+from vpp_memif import MEMIF_MODE, MEMIF_ROLE, remove_all_memif_vpp_config, \
+ VppSocketFilename, VppMemif
class TestMemif(VppTestCase):