# HG changeset patch # User David Demelier # Date 1511944864 -3600 # Node ID 17207a09a6b4dc103b028c8ddfe4a8585bdb9793 # Parent 23fc81b1bd8f1a6eff783448727d3e0099583394 Tests: remove unneeded action diff -r 23fc81b1bd8f -r 17207a09a6b4 tests/cmd-rule-info/main.cpp --- a/tests/cmd-rule-info/main.cpp Wed Nov 29 09:29:25 2017 +0100 +++ b/tests/cmd-rule-info/main.cpp Wed Nov 29 09:41:04 2017 +0100 @@ -99,8 +99,7 @@ ctl_->send({ { "command", "rule-info" }, - { "index", -100 }, - { "action", "drop" } + { "index", -100 } }); ctl_->recv([&] (auto code, auto) { result = code; @@ -119,8 +118,7 @@ ctl_->send({ { "command", "rule-info" }, - { "index", 100 }, - { "action", "drop" } + { "index", 100 } }); ctl_->recv([&] (auto code, auto) { result = code; @@ -139,8 +137,7 @@ ctl_->send({ { "command", "rule-info" }, - { "index", "notaint" }, - { "action", "drop" } + { "index", "notaint" } }); ctl_->recv([&] (auto code, auto) { result = code;