aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_param_all.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_SUITE_data/rest_param_all.erl')
-rw-r--r--test/http_SUITE_data/rest_param_all.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http_SUITE_data/rest_param_all.erl b/test/http_SUITE_data/rest_param_all.erl
index 2b2ea23..d74df74 100644
--- a/test/http_SUITE_data/rest_param_all.erl
+++ b/test/http_SUITE_data/rest_param_all.erl
@@ -17,7 +17,7 @@ content_types_provided(Req, State) ->
{[{{<<"text">>, <<"plain">>, '*'}, get_text_plain}], Req, State}.
get_text_plain(Req, State) ->
- {_, _, Param} = cowboy_req:meta(media_type, Req, {{<<"text">>, <<"plain">>}, []}),
+ {_, _, Param} = maps:get(media_type, Req, {{<<"text">>, <<"plain">>}, []}),
Body = if
Param == '*' ->
<<"'*'">>;