From 9a7848ee08c7ac8f470a9f43e63f42571b421874 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 30 Nov 2023 16:07:26 -0300 Subject: [PATCH] fix `scan_task_starts` test --- zebrad/tests/acceptance.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index 2acad35b30f..7892931f788 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -2831,10 +2831,10 @@ fn scan_task_starts() -> Result<()> { // Check that scan task started and the first scanning is done. let output = child.wait_with_output()?; - output.stdout_line_contains("spawning zebra_scanner")?; + output.stdout_line_contains("spawning shielded scanner with configured viewing keys")?; output.stdout_line_contains( format!( - "Scanning the blockchain for key {} from block 1 to", + "Scanning the blockchain for key {} from block", ZECPAGES_VIEWING_KEY ) .as_str(),