diff options
Diffstat (limited to 'test/handlers/hello_h.erl')
-rw-r--r-- | test/handlers/hello_h.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/handlers/hello_h.erl b/test/handlers/hello_h.erl index 3be7b6d..5e3dcc8 100644 --- a/test/handlers/hello_h.erl +++ b/test/handlers/hello_h.erl @@ -5,4 +5,4 @@ -export([init/2]). init(Req, Opts) -> - {ok, cowboy_req:reply(200, [], <<"Hello world!">>, Req), Opts}. + {ok, cowboy_req:reply(200, #{}, <<"Hello world!">>, Req), Opts}. |