diff options
Diffstat (limited to 'test/handlers/echo_h.erl')
-rw-r--r-- | test/handlers/echo_h.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/handlers/echo_h.erl b/test/handlers/echo_h.erl index 71408c3..6db43fe 100644 --- a/test/handlers/echo_h.erl +++ b/test/handlers/echo_h.erl @@ -13,4 +13,4 @@ echo(What, Req, Opts) -> V when is_integer(V) -> integer_to_binary(V); V -> V end, - {ok, cowboy_req:reply(200, [], Value, Req), Opts}. + {ok, cowboy_req:reply(200, #{}, Value, Req), Opts}. |