From 86858d847e6fefa68199ef6b61425bf9ca4862b6 Mon Sep 17 00:00:00 2001 From: fakeshadow <24548779@qq.com> Date: Tue, 26 Jan 2021 02:45:28 -0800 Subject: [PATCH] relax timeout duration in test --- 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 82ef7fe92..cf3348484 100644 --- a/awc/tests/test_client.rs +++ b/awc/tests/test_client.rs @@ -184,7 +184,7 @@ async fn test_response_timeout() { .send() .await .unwrap() - .timeout(Duration::from_millis(210)) + .timeout(Duration::from_millis(300)) .body() .await .unwrap();