summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorShaun Crampton <Shaun.Crampton@metaswitch.com>2013-06-01 21:11:51 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2013-06-01 21:11:51 +0900
commit93b457bf632ca5512de9bc03b9b8d305c2eb948c (patch)
treec34df26267f185d9f568e20759b84fabdfe9bbe1
parentf9b24a172006e218209c0d85aa186cc9f17d2e82 (diff)
packet lib: make test_packet work stand-alone
Prevent missing imports when running ./run_tests.sh ryu.tests.unit.packet Signed-off-by: Shaun Crampton <Shaun.Crampton@metaswitch.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/lib/packet/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ryu/lib/packet/__init__.py b/ryu/lib/packet/__init__.py
index e69de29b..cfd0f3d8 100644
--- a/ryu/lib/packet/__init__.py
+++ b/ryu/lib/packet/__init__.py
@@ -0,0 +1,2 @@
+from . import (ethernet, arp, icmp, icmpv6, ipv4, ipv6, lldp, mpls, packet,
+ packet_base, packet_utils)