Skip to content

Commit

Permalink
Adjust test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed Mar 24, 2023
1 parent bfd8067 commit fc4adf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/http_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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} =
Expand All @@ -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} =
Expand Down

0 comments on commit fc4adf7

Please sign in to comment.