aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/rest_expires.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_SUITE_data/rest_expires.erl')
-rw-r--r--test/http_SUITE_data/rest_expires.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/http_SUITE_data/rest_expires.erl b/test/http_SUITE_data/rest_expires.erl
index 4209041..e71b107 100644
--- a/test/http_SUITE_data/rest_expires.erl
+++ b/test/http_SUITE_data/rest_expires.erl
@@ -1,13 +1,13 @@
-module(rest_expires).
--export([init/3]).
+-export([init/2]).
-export([content_types_provided/2]).
-export([get_text_plain/2]).
-export([expires/2]).
-export([last_modified/2]).
-init(_Transport, _Req, _Opts) ->
- {upgrade, protocol, cowboy_rest}.
+init(Req, Opts) ->
+ {rest, Req, Opts}.
content_types_provided(Req, State) ->
{[{{<<"text">>, <<"plain">>, []}, get_text_plain}], Req, State}.