Skip to content

Commit

Permalink
very minor assert improvement (nanocurrency#4360)
Browse files Browse the repository at this point in the history
this assert fails often in CI, improving it to see why
  • Loading branch information
dsiganos authored Jan 15, 2024
1 parent d0418ba commit fb5bb88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/core_test/conflicts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ TEST (conflicts, add_two)
// wait 3s before asserting just to make sure there would be enough time
// for the Active Elections Container to evict both elections in case they would wrongfully get confirmed
//
ASSERT_TIMELY (5s, node->active.size () == 2);
ASSERT_TIMELY_EQ (5s, node->active.size (), 2);
}

TEST (vote_uniquer, null)
Expand Down

0 comments on commit fb5bb88

Please sign in to comment.