diff --git a/nano/core_test/election.cpp b/nano/core_test/election.cpp index 397c61cda4..e7ca92a5a2 100644 --- a/nano/core_test/election.cpp +++ b/nano/core_test/election.cpp @@ -176,7 +176,10 @@ TEST (election, quorum_minimum_confirm_fail) namespace nano { -TEST (election, quorum_minimum_update_weight_before_quorum_checks) +// Test disabled because it's failing intermittently. +// PR in which it got disabled: https://github.com/nanocurrency/nano-node/pull/3526 +// Issue for investigating it: https://github.com/nanocurrency/nano-node/issues/3528 +TEST (election, DISABLED_quorum_minimum_update_weight_before_quorum_checks) { nano::system system; nano::node_config node_config (nano::get_available_port (), system.logging); diff --git a/nano/core_test/node.cpp b/nano/core_test/node.cpp index f283a29e98..c035aa674e 100644 --- a/nano/core_test/node.cpp +++ b/nano/core_test/node.cpp @@ -3159,7 +3159,10 @@ TEST (node, epoch_conflict_confirm) } } -TEST (node, fork_invalid_block_signature) +// Test disabled because it's failing intermittently. +// PR in which it got disabled: https://github.com/nanocurrency/nano-node/pull/3526 +// Issue for investigating it: https://github.com/nanocurrency/nano-node/issues/3527 +TEST (node, DISABLED_fork_invalid_block_signature) { nano::system system; nano::node_flags node_flags; diff --git a/nano/node/online_reps.hpp b/nano/node/online_reps.hpp index 9e327ef3de..92eced3c95 100644 --- a/nano/node/online_reps.hpp +++ b/nano/node/online_reps.hpp @@ -68,7 +68,7 @@ class online_reps final nano::uint128_t online_m; nano::uint128_t minimum; - friend class election_quorum_minimum_update_weight_before_quorum_checks_Test; + friend class election_DISABLED_quorum_minimum_update_weight_before_quorum_checks_Test; friend std::unique_ptr collect_container_info (online_reps & online_reps, std::string const & name); };