From 6f898f8c90f2b356624d2186a071359df0de6e43 Mon Sep 17 00:00:00 2001 From: fakeshadow <24548779@qq.com> Date: Wed, 17 Feb 2021 03:05:52 -0800 Subject: [PATCH] relax timeout duration in tests --- awc/tests/test_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awc/tests/test_client.rs b/awc/tests/test_client.rs index e094fa377..bcbaf3f41 100644 --- a/awc/tests/test_client.rs +++ b/awc/tests/test_client.rs @@ -181,7 +181,7 @@ async fn test_response_timeout() { .send() .await .unwrap() - .timeout(Duration::from_millis(300)) + .timeout(Duration::from_millis(500)) .body() .await .unwrap();