unit_tests: fix boost 1.58 compatibility

remotes/1691602464505633909/tmp_refs/heads/wonerujo-v0.10.1
anon 3 years ago
parent f6e63ef260
commit df032882a8
No known key found for this signature in database
GPG Key ID: D3857C17AA7F968B

@ -352,7 +352,7 @@ TEST(cryptonote_protocol_handler, race_condition)
acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
acceptor.bind(endpoint, ec);
EXPECT_EQ(ec.value(), 0);
acceptor.listen(boost::asio::socket_base::max_listen_connections, ec);
acceptor.listen(boost::asio::socket_base::max_connections, ec);
EXPECT_EQ(ec.value(), 0);
out->socket().open(endpoint.protocol(), ec);
EXPECT_EQ(ec.value(), 0);

Loading…
Cancel
Save