diff options
Diffstat (limited to 'test/http_handler_init_shutdown.erl')
-rw-r--r-- | test/http_handler_init_shutdown.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http_handler_init_shutdown.erl b/test/http_handler_init_shutdown.erl index a5930ca..732ca1d 100644 --- a/test/http_handler_init_shutdown.erl +++ b/test/http_handler_init_shutdown.erl @@ -6,7 +6,7 @@ init({_Transport, http}, Req, _Opts) -> Req2 = cowboy_http_req:reply(<<"666 Init Shutdown Testing">>, - [{'Connection', <<"close">>}], [], Req), + [{'Connection', <<"close">>}], Req), {shutdown, Req2, undefined}. handle(Req, State) -> |