summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHIYAMA Manabu <hiyama.manabu@po.ntts.co.jp>2013-02-06 14:02:11 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2013-02-07 06:26:57 +0900
commite97b724591b3000856e54c9dee371061769f8fa2 (patch)
tree1b964f5238de6131f6bd103eb16ec38c4fc69364
parentc26879300564cf1e4892f70418783d823bd695c2 (diff)
test: fix integration tests: reflects 978f3e5c
File "/home/openflow/git/osrg/ryu/ryu/tests/integrated/tester.py", line 167, in TestFlowBase @handler.set_ev_cls(dpset.EventDP, dpset.DPSET_EV_DISPATCHER) AttributeError: 'module' object has no attribute 'DPSET_EV_DISPATCHER' Signed-off-by: HIYAMA Manabu <hiyama.manabu@po.ntts.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--ryu/tests/integrated/tester.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ryu/tests/integrated/tester.py b/ryu/tests/integrated/tester.py
index 9538e1d1..f052c6cc 100644
--- a/ryu/tests/integrated/tester.py
+++ b/ryu/tests/integrated/tester.py
@@ -164,7 +164,7 @@ class TestFlowBase(app_manager.RyuApp):
self.results[self.current] = result
self.start_next_test(dp)
- @handler.set_ev_cls(dpset.EventDP, dpset.DPSET_EV_DISPATCHER)
+ @handler.set_ev_cls(dpset.EventDP)
def handler_datapath(self, ev):
if ev.enter:
self.start_next_test(ev.dp)