From: Paul Vinciguerra Date: Tue, 14 May 2019 17:35:19 +0000 (-0400) Subject: tests: test_pipe.py. Fix missing import. X-Git-Tag: v20.01-rc0~618 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F76%2F19576%2F2;p=vpp.git 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 --- 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): """