File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -102,11 +102,11 @@ class message_generator_test : public beast::unit_test::suite
102
102
103
103
// only rvalue refs
104
104
BOOST_STATIC_ASSERT (
105
- not std::is_constructible<
105
+ ! std::is_constructible<
106
106
message_generator,
107
107
message<true , string_body>&>::value);
108
108
BOOST_STATIC_ASSERT (
109
- not std::is_constructible<
109
+ ! std::is_constructible<
110
110
message_generator,
111
111
message<true , string_body> const &>::value);
112
112
Original file line number Diff line number Diff line change @@ -386,6 +386,7 @@ class read_test
386
386
net::io_context ioc;
387
387
test::stream ts{ioc,
388
388
" GET / HTTP/1.1\r\n\r\n " };
389
+ ts.close (); // make sure the read completes
389
390
BEAST_EXPECT (handler::count () == 0 );
390
391
multi_buffer b;
391
392
request<dynamic_body> m;
You can’t perform that action at this time.
0 commit comments