From 38404db183620385279f599ee8841d3a35d6c868 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Tue, 14 May 2019 13:35:19 -0400 Subject: tests: test_pipe.py. Fix missing import. * Fix missing import (does not impact 'make test', fixes issue running under 'make test-shell') Change-Id: I634378a8809df5c5b9671555932e797d04a2abbb Signed-off-by: Paul Vinciguerra --- test/test_pipe.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'test/test_pipe.py') diff --git a/test/test_pipe.py b/test/test_pipe.py index 2d3c1ecd24c..6a0b4a0d093 100644 --- a/test/test_pipe.py +++ b/test/test_pipe.py @@ -1,14 +1,15 @@ #!/usr/bin/env python from socket import AF_INET, AF_INET6, inet_pton - -from framework import VppTestCase, VppTestRunner -from vpp_interface import VppInterface -from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath +import unittest from scapy.packet import Raw from scapy.layers.l2 import Ether from scapy.layers.inet import IP, UDP +from framework import VppTestCase, VppTestRunner +from vpp_interface import VppInterface +from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath + class VppPipe(VppInterface): """ -- cgit 1.2.3-korg