From 5396dca3207c630194fe1abdd23479e32e1bca5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Wed, 21 May 2025 14:02:56 +0200 Subject: [PATCH] Fix `TEST (active_elections, vote_replays)` (#4908) --- nano/core_test/active_elections.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/nano/core_test/active_elections.cpp b/nano/core_test/active_elections.cpp index 8838c546..119cd961 100644 --- a/nano/core_test/active_elections.cpp +++ b/nano/core_test/active_elections.cpp @@ -720,7 +720,6 @@ TEST (active_elections, vote_replays) ASSERT_EQ (nano::vote_code::vote, node.vote_router.vote (vote1_send2).at (send2->hash ())); // this vote confirms the election // This should still return replay or late, either because the election is still in the AEC or because it is recently confirmed - ASSERT_EQ (nano::vote_code::replay, node.vote_router.vote (vote1_send2).at (send2->hash ())); ASSERT_TIMELY (5s, node.active.empty ()); ASSERT_EQ (nano::vote_code::late, node.vote_router.vote (vote1_send2).at (send2->hash ())); ASSERT_EQ (nano::vote_code::late, node.vote_router.vote (vote2_send2).at (send2->hash ()));