From a279d9cf615bd60439085ba103125e6f2fa3b27c Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Thu, 28 Feb 2019 09:00:09 -0800 Subject: Tests: Remove all wildcard imports. They mask dependencies and confuse third party tools. Change-Id: I24ee16bfa0d746a8e8cb99891ba8b20523048b69 Signed-off-by: Paul Vinciguerra --- test/test_gre.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'test/test_gre.py') diff --git a/test/test_gre.py b/test/test_gre.py index dd7b8bc6b8f..044b72993ae 100644 --- a/test/test_gre.py +++ b/test/test_gre.py @@ -1,14 +1,6 @@ #!/usr/bin/env python import unittest -from logging import * - -from framework import VppTestCase, VppTestRunner -from vpp_sub_interface import VppDot1QSubint -from vpp_gre_interface import VppGreInterface, VppGre6Interface -from vpp_ip import DpoProto -from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpTable -from vpp_papi_provider import L2_VTR_OP from scapy.packet import Raw from scapy.layers.l2 import Ether, Dot1Q, GRE @@ -16,6 +8,12 @@ from scapy.layers.inet import IP, UDP from scapy.layers.inet6 import IPv6 from scapy.volatile import RandMAC, RandIP +from framework import VppTestCase, VppTestRunner +from vpp_sub_interface import VppDot1QSubint +from vpp_gre_interface import VppGreInterface, VppGre6Interface +from vpp_ip import DpoProto +from vpp_ip_route import VppIpRoute, VppRoutePath, VppIpTable +from vpp_papi_provider import L2_VTR_OP from util import ppp, ppc -- cgit 1.2.3-korg