From fc4adf7971cbe522881eb748ec05f86c014124ba Mon Sep 17 00:00:00 2001 From: Kip Cole Date: Sat, 25 Mar 2023 01:42:57 +1100 Subject: [PATCH] Adjust test timeout --- test/http_test.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/http_test.exs b/test/http_test.exs index b2ab81d..d680315 100644 --- a/test/http_test.exs +++ b/test/http_test.exs @@ -29,7 +29,7 @@ defmodule Cldr.Http.Test do end test "Request with connection timeout" do - options = [connection_timeout: 5] + options = [connection_timeout: 2] assert capture_log(fn -> assert {:error, :connection_timeout} = @@ -38,7 +38,7 @@ defmodule Cldr.Http.Test do end test "Request with timeout" do - options = [timeout: 5] + options = [timeout: 2] assert capture_log(fn -> assert {:error, :timeout} =