Skip to content

Commit

Permalink
Remove unnecessary cerr output in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Oct 19, 2023
1 parent f6343e7 commit 3e11aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ BOOST_AUTO_TEST_CASE( oom_flush_dirty_pages ) {
}

}
std::cerr << "index size: " << db.get_index<get_index_type<book>::type>().size() << '\n';
BOOST_REQUIRE_EQUAL( db.get_index<get_index_type<book>::type>().size(), i+1);
BOOST_REQUIRE(db.get_index<get_index_type<book>::type>().size() == i+1);
const auto& last_inserted_book = db.get( book::id_type(i) );
BOOST_REQUIRE_EQUAL( last_inserted_book.a, (int)i );
Expand Down

0 comments on commit 3e11aa8

Please sign in to comment.