From 049a3d8f2cb14f2a26201f6ef47efd5db32d8e6c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 6 Oct 2021 12:59:30 +0300 Subject: [PATCH] fix: disable test which hits poor interraction of features See https://github.com/near/nearcore/commit/d95a1edf9f4a3f751876907f8487e6eefa6594ec for prior art --- integration-tests/tests/client/process_blocks.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration-tests/tests/client/process_blocks.rs b/integration-tests/tests/client/process_blocks.rs index 2469e9d7534..ca436d137a4 100644 --- a/integration-tests/tests/client/process_blocks.rs +++ b/integration-tests/tests/client/process_blocks.rs @@ -2569,6 +2569,9 @@ fn test_refund_receipts_processing() { assert_eq!(processed_refund_receipt_ids, refund_receipt_ids); } +// This test cannot be enabled at the same time as `protocol_feature_block_header_v3`. +// Otherwise we hit an assert: https://github.com/near/nearcore/pull/4934#issuecomment-935863800 +#[cfg(not(feature = "protocol_feature_block_header_v3"))] #[test] fn test_wasmer2_upgrade() { let mut capture = near_logger_utils::TracingCapture::enable();