Skip to content

Commit

Permalink
Merge bitcoin#8790: [test] Remove redundant debug print in addrman_tests
Browse files Browse the repository at this point in the history
3333bd2 [test] Remove redundant print in addrman_tests (MarcoFalke)
  • Loading branch information
MarcoFalke authored and codablock committed Jan 11, 2018
1 parent 7f4439f commit 5470389
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/addrman_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down Expand Up @@ -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()

0 comments on commit 5470389

Please sign in to comment.