Skip to content

Commit

Permalink
Remove std::cout in the test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jun 4, 2024
1 parent 07021a4 commit d70873d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/unittests/unittest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1395,8 +1395,6 @@ TEST_CASE("Clone empty relations", "[relations][basics]") {
auto newColl = ExampleClusterCollection();
newColl.push_back(coll.at(0).clone(false));
newColl.push_back(coll.at(1).clone(false));
std::cout << newColl[0].Hits().size() << '\n';
std::cout << newColl[1].Hits().size() << '\n';
REQUIRE(newColl[0].Hits().empty());
REQUIRE(newColl[1].Hits().empty());
newColl[0].addHits(ExampleHit());
Expand Down

0 comments on commit d70873d

Please sign in to comment.