diff --git a/cumulus/test/service/src/lib.rs b/cumulus/test/service/src/lib.rs
index 6fd3e4d43d75e8e3116148d0a8b64e1576f9f867..4d4c60d1bda6652eeb908d1ab195e73c42084b3b 100644
--- a/cumulus/test/service/src/lib.rs
+++ b/cumulus/test/service/src/lib.rs
@@ -211,7 +211,8 @@ pub fn new_partial(
 		sc_service::new_full_parts::<Block, RuntimeApi, _>(config, None, executor)?;
 	let client = Arc::new(client);
 
-	let block_import = ParachainBlockImport::new(client.clone(), backend.clone());
+	let block_import =
+		ParachainBlockImport::new_with_delayed_best_block(client.clone(), backend.clone());
 
 	let registry = config.prometheus_registry();