File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ BOOST_AUTO_TEST_CASE(channel_http__send__not_connected__expected)
200200 BOOST_REQUIRE (!channel_ptr->stopped ());
201201 boost::asio::post (channel_ptr->strand (), [&]() NOEXCEPT
202202 {
203- channel_ptr->send <http::string_response >({}, handler);
203+ channel_ptr->send <http::response >({}, handler);
204204 });
205205
206206 // 10009 (WSAEBADF, invalid file handle) gets mapped to bad_stream.
@@ -227,7 +227,7 @@ BOOST_AUTO_TEST_CASE(channel_http__send__not_connected_move__expected)
227227 BOOST_REQUIRE (!channel_ptr->stopped ());
228228 boost::asio::post (channel_ptr->strand (), [&]() NOEXCEPT
229229 {
230- channel_ptr->send (http::string_response {}, [&](code ec)
230+ channel_ptr->send (http::response {}, [&](code ec)
231231 {
232232 result &= channel_ptr->stopped ();
233233 promise.set_value (ec);
You can’t perform that action at this time.
0 commit comments