commit | 5de5e63745034c47fff2ce1c92b9332b74fb937c | [log] [tgz] |
---|---|---|
author | Rich Lane <rlane@bigswitch.com> | Sun Nov 24 10:15:25 2013 -0800 |
committer | Rich Lane <rlane@bigswitch.com> | Sun Nov 24 10:15:25 2013 -0800 |
tree | 4c88b9aadf7693cbd7f659e5d1e6ff69122af6ed | |
parent | 8be7a286939c4536a6afec394db02317dd3ed68a [diff] |
testutils: use group_mod subclasses
diff --git a/src/python/oftest/testutils.py b/src/python/oftest/testutils.py index 743e4e7..e8498d5 100644 --- a/src/python/oftest/testutils.py +++ b/src/python/oftest/testutils.py
@@ -55,8 +55,7 @@ """ logging.info("Deleting all groups") - msg = ofp.message.group_mod( - command=ofp.OFPGC_DELETE, group_id=ofp.OFPG_ALL) + msg = ofp.message.group_delete(group_id=ofp.OFPG_ALL) ctrl.message_send(msg) do_barrier(ctrl)