aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-03-27 21:22:52 +0100
committerLoïc Hoguin <[email protected]>2020-03-27 21:22:52 +0100
commit48326cf993c6610603b0528ddf3b9c1d5139e16c (patch)
tree3b593df6c195d3df44f6bd157d02042d7c0dcbb0 /test
parenta79bb2501dadb262c34cda3e1f42a6f1a59bf045 (diff)
downloadgun-48326cf993c6610603b0528ddf3b9c1d5139e16c.tar.gz
gun-48326cf993c6610603b0528ddf3b9c1d5139e16c.tar.bz2
gun-48326cf993c6610603b0528ddf3b9c1d5139e16c.zip
Use infinity timeout for gun:await in reply_to tests
Diffstat (limited to 'test')
-rw-r--r--test/gun_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gun_SUITE.erl b/test/gun_SUITE.erl
index d533112..04d72af 100644
--- a/test/gun_SUITE.erl
+++ b/test/gun_SUITE.erl
@@ -250,7 +250,7 @@ do_reply_to(Protocol) ->
{ok, Protocol} = gun:await_up(Pid),
ReplyTo = spawn(fun() ->
receive Ref ->
- Response = gun:await(Pid, Ref),
+ Response = gun:await(Pid, Ref, infinity),
Self ! Response
end
end),