aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-04-13 16:26:48 +0300
committerLoïc Hoguin <[email protected]>2015-04-13 16:26:48 +0300
commitaa2ef884d9cdab2fc3926caafde0947374f9623c (patch)
tree2feedf669d4f63a9390d93b5a0e7a1cdb9a4ac68
parent1c26a6d0d1a985fe7bccd2a131ac148db8e7ef9a (diff)
downloadgun-aa2ef884d9cdab2fc3926caafde0947374f9623c.tar.gz
gun-aa2ef884d9cdab2fc3926caafde0947374f9623c.tar.bz2
gun-aa2ef884d9cdab2fc3926caafde0947374f9623c.zip
Fix timing issue in one of the tests
-rw-r--r--test/spdy_SUITE.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/spdy_SUITE.erl b/test/spdy_SUITE.erl
index f03ae2a..323d80d 100644
--- a/test/spdy_SUITE.erl
+++ b/test/spdy_SUITE.erl
@@ -154,6 +154,7 @@ streamid_increases_monotonically(_) ->
{ok, spdy} = gun:await_up(ConnPid),
Expected = [1, 3, 5, 7, 9],
[do_req_resp(ConnPid, ServerPid, N) || N <- Expected],
+ wait(),
Rec = spdy_server:stop(ServerPid),
Expected = [StreamID || {syn_stream, StreamID, _, _, _, _, _, _, _, _, _, _} <- Rec].