aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-02-04 16:18:28 +0100
committerLoïc Hoguin <[email protected]>2015-02-04 16:18:28 +0100
commit89c47d3d6edc8aafb4c9c4a5a86fb0239dee8f3a (patch)
tree3e340804d2417c397c3b9b7f57325fcc26a49a3a /test/http_SUITE.erl
parent3cede06283a2b7b33ec822526341a9261574a2bf (diff)
downloadcowboy-89c47d3d6edc8aafb4c9c4a5a86fb0239dee8f3a.tar.gz
cowboy-89c47d3d6edc8aafb4c9c4a5a86fb0239dee8f3a.tar.bz2
cowboy-89c47d3d6edc8aafb4c9c4a5a86fb0239dee8f3a.zip
Use cowlib for parsing headers; remove cowboy_http
Diffstat (limited to 'test/http_SUITE.erl')
-rw-r--r--test/http_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl
index 1b819ae..12b974c 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -748,8 +748,8 @@ rest_resource_etags(Config) ->
{200, <<"\"etag-header-value\"">>, "tuple-strong"},
{200, <<"W/\"etag-header-value\"">>, "binary-weak-quoted"},
{200, <<"\"etag-header-value\"">>, "binary-strong-quoted"},
- {500, false, "binary-strong-unquoted"},
- {500, false, "binary-weak-unquoted"}
+ {400, false, "binary-strong-unquoted"},
+ {400, false, "binary-weak-unquoted"}
],
_ = [{Status, ETag, Type} = begin
{Ret, RespETag} = rest_resource_get_etag(Config, Type),