summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBessenyei Balázs Donát <bessbd@users.noreply.github.com>2021-03-22 16:05:46 +0100
committerGitHub <noreply@github.com>2021-03-22 16:05:46 +0100
commiteb94a0e459f89601b1eb84ec506b2ad24ccd45f0 (patch)
treef9703304c55fbfc952a0b268cf07e11385f8f1ce
parentf0471ba6b23e57c95417cd9f26839ceb5ea6670a (diff)
downloadcouchdb-eb94a0e459f89601b1eb84ec506b2ad24ccd45f0.tar.gz
Increase timeout for process_response in ChangesAsyncTest (#3450)
-rw-r--r--test/elixir/test/changes_async_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/elixir/test/changes_async_test.exs b/test/elixir/test/changes_async_test.exs
index 3af5b9b61..4a451b0dd 100644
--- a/test/elixir/test/changes_async_test.exs
+++ b/test/elixir/test/changes_async_test.exs
@@ -283,7 +283,7 @@ defmodule ChangesAsyncTest do
end
end
- defp process_response(id, chunk_parser, timeout \\ 1000) do
+ defp process_response(id, chunk_parser, timeout \\ 2000) do
receive do
%HTTPotion.AsyncChunk{id: ^id} = msg ->
chunk_parser.(msg)