From eec467a173d165c6c6727c5d3881d15990751e95 Mon Sep 17 00:00:00 2001 From: Arya Date: Tue, 15 Aug 2023 18:16:09 -0400 Subject: [PATCH] should fix the timeouts (#7332) --- zebrad/tests/acceptance.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index a6fab9d5e..765965904 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -1832,7 +1832,7 @@ fn lightwalletd_integration_test(test_type: TestType) -> Result<()> { if test_type.needs_lightwalletd_cached_state() { lightwalletd - .expect_stdout_line_matches("Done reading [0-9]{7} blocks from disk cache")?; + .expect_stdout_line_matches("Done reading [0-9]{1,7} blocks from disk cache")?; } else if !test_type.allow_lightwalletd_cached_state() { // Timeout the test if we're somehow accidentally using a cached state in our temp dir lightwalletd.expect_stdout_line_matches("Done reading 0 blocks from disk cache")?;