From 93fa12f6c4efb3f48f7bbc35944e60fe9c3b4156 Mon Sep 17 00:00:00 2001 From: Marcelo Diop-Gonzalez Date: Thu, 16 Jan 2025 14:00:45 -0500 Subject: [PATCH] fix ultra_slow_test_process_block_after_state_sync --- integration-tests/src/tests/client/process_blocks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/src/tests/client/process_blocks.rs b/integration-tests/src/tests/client/process_blocks.rs index edea7cd4883..d7e5cd4a009 100644 --- a/integration-tests/src/tests/client/process_blocks.rs +++ b/integration-tests/src/tests/client/process_blocks.rs @@ -1694,7 +1694,7 @@ fn ultra_slow_test_process_block_after_state_sync() { let Some(sync_hash) = env.clients[0].chain.get_sync_hash(&block_hash).unwrap() else { sync_hash_attempts += 1; // Sync hash should be available in 4 blocks - assert!(sync_hash_attempts <= 4, "sync_hash_attempts: {}", sync_hash_attempts); + assert!(sync_hash_attempts <= 5, "sync_hash_attempts: {}", sync_hash_attempts); continue; }; // Produce one more block after the sync hash is found so that the snapshot will be created