aboutsummaryrefslogtreecommitdiffstats
path: root/test/static_handler_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/static_handler_SUITE.erl')
-rw-r--r--test/static_handler_SUITE.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/static_handler_SUITE.erl b/test/static_handler_SUITE.erl
index 786438a..d4394c5 100644
--- a/test/static_handler_SUITE.erl
+++ b/test/static_handler_SUITE.erl
@@ -392,9 +392,8 @@ dir_error_directory_slash(Config) ->
dir_error_doesnt_exist(Config) ->
doc("Try to get a file that does not exist."),
- %% @todo Check that the content-type header is removed.
- {404, _Headers, _} = do_get(config(prefix, Config) ++ "/not.found", Config),
-% false = lists:keyfind(<<"content-type">>, 1, Headers),
+ {404, Headers, _} = do_get(config(prefix, Config) ++ "/not.found", Config),
+ false = lists:keyfind(<<"content-type">>, 1, Headers),
ok.
dir_error_dot(Config) ->