diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-05-14 13:35:19 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-05-14 19:54:56 +0000 |
commit | 38404db183620385279f599ee8841d3a35d6c868 (patch) | |
tree | ba7d2d774662d218beb8513d58c0d412ab9fea36 /test | |
parent | ba123e152bc16197654c8ac85550a6b1f7b8a791 (diff) |
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 <pvinci@vinciconsulting.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_pipe.py | 9 |
1 files changed, 5 insertions, 4 deletions
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): """ |