very minor assert improvement (#4360)

this assert fails often in CI, improving it to see why
This commit is contained in:
Dimitrios Siganos 2024-01-15 04:00:01 +00:00 committed by GitHub
commit fb5bb88002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)