aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/rfc7230_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rfc7230_SUITE.erl b/test/rfc7230_SUITE.erl
index 0097b7d..19b97bc 100644
--- a/test/rfc7230_SUITE.erl
+++ b/test/rfc7230_SUITE.erl
@@ -1557,13 +1557,13 @@ pipeline(Config) ->
ConnPid = gun_open(Config),
Refs = [{
gun:get(ConnPid, "/"),
- gun:post(ConnPid, "/full/read_body", [], <<0:800000>>)
+ gun:post(ConnPid, "/full/read_body", [], <<0:80000>>)
} || _ <- lists:seq(1, 25)],
_ = [begin
{response, nofin, 200, _} = gun:await(ConnPid, Ref1, infinity),
{ok, <<"Hello world!">>} = gun:await_body(ConnPid, Ref1, infinity),
{response, nofin, 200, _} = gun:await(ConnPid, Ref2, infinity),
- {ok, <<0:800000>>} = gun:await_body(ConnPid, Ref2, infinity)
+ {ok, <<0:80000>>} = gun:await_body(ConnPid, Ref2, infinity)
end || {Ref1, Ref2} <- Refs],
ok.