@@ -279,14 +279,15 @@ TEST(EngineTest, WafDefaultActions)
279279
280280 auto listener = std::make_unique<mock::listener>();
281281 EXPECT_CALL (*listener, call (_, _, _))
282- .WillRepeatedly (Invoke ([](dds::parameter_view &data, dds::event &event_,
283- const dds::network::request_exec_options
284- &options) -> void {
285- event_.actions .push_back ({dds::action_type::redirect, {}});
286- event_.actions .push_back ({dds::action_type::block, {}});
287- event_.actions .push_back ({dds::action_type::stack_trace, {}});
288- event_.actions .push_back ({dds::action_type::extract_schema, {}});
289- }));
282+ .WillRepeatedly (Invoke (
283+ [](dds::parameter_view &data, dds::event &event_,
284+ const dds::network::request_exec_options &options) -> void {
285+ event_.actions .push_back ({dds::action_type::redirect, {}});
286+ event_.actions .push_back ({dds::action_type::block, {}});
287+ event_.actions .push_back ({dds::action_type::stack_trace, {}});
288+ event_.actions .push_back (
289+ {dds::action_type::extract_schema, {}});
290+ }));
290291
291292 auto sub = std::make_unique<mock::subscriber>();
292293 EXPECT_CALL (*sub, get_listener ()).WillOnce (Invoke ([&]() {
0 commit comments