aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE_data/http_errors.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/http_SUITE_data/http_errors.erl')
-rw-r--r--test/http_SUITE_data/http_errors.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http_SUITE_data/http_errors.erl b/test/http_SUITE_data/http_errors.erl
index f646df5..ee5c2b2 100644
--- a/test/http_SUITE_data/http_errors.erl
+++ b/test/http_SUITE_data/http_errors.erl
@@ -9,9 +9,9 @@ init(Req, _Opts) ->
case_init(Case, Req).
case_init(<<"init_before_reply">> = Case, _Req) ->
- cowboy_error_h:ignore(?MODULE, case_init, 2),
+ ct_helper_error_h:ignore(?MODULE, case_init, 2),
error(Case);
case_init(<<"init_after_reply">> = Case, Req) ->
- cowboy_error_h:ignore(?MODULE, case_init, 2),
+ ct_helper_error_h:ignore(?MODULE, case_init, 2),
_ = cowboy_req:reply(200, [], "http_handler_crashes", Req),
error(Case).