diff options
| author | Bessenyei Balázs Donát <bessbd@users.noreply.github.com> | 2021-03-22 16:05:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-22 16:05:46 +0100 |
| commit | eb94a0e459f89601b1eb84ec506b2ad24ccd45f0 (patch) | |
| tree | f9703304c55fbfc952a0b268cf07e11385f8f1ce | |
| parent | f0471ba6b23e57c95417cd9f26839ceb5ea6670a (diff) | |
| download | couchdb-eb94a0e459f89601b1eb84ec506b2ad24ccd45f0.tar.gz | |
Increase timeout for process_response in ChangesAsyncTest (#3450)
| -rw-r--r-- | test/elixir/test/changes_async_test.exs | 2 |
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) |
