From 2f5f2bfae77a2777658463ba2d46eba8e02ec210 Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Tue, 13 Aug 2024 09:19:41 +0800 Subject: [PATCH] Integration Test: Let SyncChurn run at last Signed-off-by: Eval EXEC --- test/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/main.rs b/test/src/main.rs index 06909fce1c..960fc4026b 100644 --- a/test/src/main.rs +++ b/test/src/main.rs @@ -398,7 +398,6 @@ fn all_specs() -> Vec> { Box::new(BlockSyncNonAncestorBestBlocks), Box::new(RequestUnverifiedBlocks), Box::new(SyncTimeout), - Box::new(SyncChurn), Box::new(SyncInvalid), Box::new(GetBlockFilterCheckPoints), Box::new(GetBlockFilterHashes), @@ -593,6 +592,7 @@ fn all_specs() -> Vec> { Box::new(RandomlyKill), ]; specs.shuffle(&mut thread_rng()); + specs.append(&mut vec![Box::new(SyncChurn) as Box]); specs }