diff options
author | Loïc Hoguin <[email protected]> | 2025-02-10 17:24:13 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-02-10 17:24:13 +0100 |
commit | 105d233c2eb9c3521cd4d96af22fac55aed30720 (patch) | |
tree | 1fc49e97b46f7734759575df77204ac42fd7ffd9 | |
parent | 882a4f459121f82ffc3f2a53cdb1d7194e502abe (diff) | |
download | cowboy-105d233c2eb9c3521cd4d96af22fac55aed30720.tar.gz cowboy-105d233c2eb9c3521cd4d96af22fac55aed30720.tar.bz2 cowboy-105d233c2eb9c3521cd4d96af22fac55aed30720.zip |
Correct a ct_helper:ignore call
-rw-r--r-- | test/static_handler_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/static_handler_SUITE.erl b/test/static_handler_SUITE.erl index 9620f66..d42291c 100644 --- a/test/static_handler_SUITE.erl +++ b/test/static_handler_SUITE.erl @@ -230,7 +230,7 @@ execute(Req=#{path := Path}, Env) -> <<"/bad/dir/route">> -> ct_helper:ignore(cowboy_static, escape_reserved, 1); <<"/bad">> -> ct_helper:ignore(cowboy_static, init_opts, 2); <<"/bad/options">> -> ct_helper:ignore(cowboy_static, content_types_provided, 2); - <<"/bad/options/mime">> -> ct_helper:ignore(cowboy_rest, set_content_type, 2); + <<"/bad/options/mime">> -> ct_helper:ignore(cowboy_rest, normalize_content_types, 2); <<"/bad/options/etag">> -> ct_helper:ignore(cowboy_static, generate_etag, 2); <<"/bad/options/charset">> -> ct_helper:ignore(cowboy_static, charsets_provided, 2); _ -> ok |