aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/http_chunked.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_SUITE_data/http_chunked.erl')
-rw-r--r--test/http_SUITE_data/http_chunked.erl6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/http_SUITE_data/http_chunked.erl b/test/http_SUITE_data/http_chunked.erl
index 0c18363..87a6852 100644
--- a/test/http_SUITE_data/http_chunked.erl
+++ b/test/http_SUITE_data/http_chunked.erl
@@ -3,15 +3,11 @@
-module(http_chunked).
-export([init/2]).
--export([handle/2]).
init(Req, Opts) ->
- {http, Req, Opts}.
-
-handle(Req, State) ->
Req2 = cowboy_req:chunked_reply(200, Req),
timer:sleep(100),
cowboy_req:chunk("chunked_handler\r\n", Req2),
timer:sleep(100),
cowboy_req:chunk("works fine!", Req2),
- {ok, Req2, State}.
+ {ok, Req2, Opts}.