1
mirror of https://github.com/bitcoin/bitcoin synced 2024-09-13 04:06:05 +02:00

Merge #8790: [test] Remove redundant debug print in addrman_tests

3333bd2 [test] Remove redundant print in addrman_tests (MarcoFalke)
This commit is contained in:
MarcoFalke 2016-09-24 15:38:31 +02:00
commit 08cc5fd666
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137

View File

@ -257,8 +257,7 @@ BOOST_AUTO_TEST_CASE(addrman_tried_collisions)
addrman.Good(CAddress(addr, NODE_NONE));
//Test 15: No collision in tried table yet.
BOOST_TEST_MESSAGE(addrman.size());
BOOST_CHECK(addrman.size() == i);
BOOST_CHECK_EQUAL(addrman.size(), i);
}
//Test 16: tried table collision!
@ -543,4 +542,4 @@ BOOST_AUTO_TEST_CASE(caddrinfo_get_new_bucket)
// than 64 buckets.
BOOST_CHECK(buckets.size() > 64);
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()