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.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/http_SUITE_data/rest_param_all.erl b/test/http_SUITE_data/rest_param_all.erl
index 22daac7..54950eb 100644
--- a/test/http_SUITE_data/rest_param_all.erl
+++ b/test/http_SUITE_data/rest_param_all.erl
@@ -1,14 +1,14 @@
-module(rest_param_all).
--export([init/3]).
+-export([init/2]).
-export([allowed_methods/2]).
-export([content_types_provided/2]).
-export([get_text_plain/2]).
-export([content_types_accepted/2]).
-export([put_text_plain/2]).
-init(_Transport, _Req, _Opts) ->
- {upgrade, protocol, cowboy_rest}.
+init(Req, Opts) ->
+ {rest, Req, Opts}.
allowed_methods(Req, State) ->
{[<<"GET">>, <<"PUT">>], Req, State}.