Skip to content

Commit

Permalink
#1122: test: clean up extra output
Browse files Browse the repository at this point in the history
  • Loading branch information
nlslatt committed Nov 4, 2020
1 parent 1d2054c commit 7528a91
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/unit/collection/test_lbstats_retention.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,7 @@ struct MyMsg : vt::CollectionMessage<ColT> { };
struct TestCol : vt::Collection<TestCol,vt::Index1D> {
unsigned int prev_calls_ = 0;

unsigned int prevCalls() {
fmt::print(
"{}: {}: prev_calls={}\n",
theContext()->getNode(), getIndex(), prev_calls_
);
return prev_calls_++;
}
unsigned int prevCalls() { return prev_calls_++; }

static void colHandler(MyMsg<TestCol>* msg, TestCol* col) {
auto phase = col->prevCalls();
Expand Down

0 comments on commit 7528a91

Please sign in to comment.