From 4430a48ef3d20ceddf737a2f2741638875b0148c Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 18 Oct 2021 08:58:34 +1000 Subject: [PATCH] Avoid spurious test failures on busy machines --- zebra-test/src/mock_service.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-test/src/mock_service.rs b/zebra-test/src/mock_service.rs index d255ef7f7..03976f43a 100644 --- a/zebra-test/src/mock_service.rs +++ b/zebra-test/src/mock_service.rs @@ -76,7 +76,7 @@ const DEFAULT_PROXY_CHANNEL_SIZE: usize = 100; /// /// Note that if a test checks that no requests are received, each check has to wait for this /// amount of time, so this may affect the test execution time. -const DEFAULT_MAX_REQUEST_DELAY: Duration = Duration::from_millis(25); +const DEFAULT_MAX_REQUEST_DELAY: Duration = Duration::from_millis(500); /// An internal type representing the item that's sent in the [`broadcast`] channel. ///