diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-02-28 09:00:09 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-03-01 09:28:09 +0000 |
commit | a279d9cf615bd60439085ba103125e6f2fa3b27c (patch) | |
tree | 53544c5534b573251d1067bb72078d2ff6ebce00 /test/test_lisp.py | |
parent | e8fece85e2b6190a1ebdc05c10cd79e43f385918 (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_lisp.py')
-rw-r--r-- | test/test_lisp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_lisp.py b/test/test_lisp.py index f66fcf79bc0..6ca16811b8b 100644 --- a/test/test_lisp.py +++ b/test/test_lisp.py @@ -10,7 +10,8 @@ from scapy.layers.inet import IP, UDP, Ether from scapy.layers.inet6 import IPv6 from framework import VppTestCase, VppTestRunner -from lisp import * +from lisp import VppLocalMapping, VppLispAdjacency, VppLispLocator, \ + VppLispLocatorSet, VppRemoteMapping from util import ppp, ForeignAddressFactory # From py_lispnetworking.lisp.py: # GNU General Public License v2.0 |