Merge pull request #7653

73d3b00 unit_tests: fix boost 1.58 compatibility (anon)
pull/377/head
luigi1111 3 years ago
commit d544fd0f52
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -351,7 +351,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