diff options
author | Loïc Hoguin <[email protected]> | 2012-01-26 23:27:34 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-01-26 23:27:34 +0100 |
commit | bb08cf85e38f02d5785b2a23c38d3b4c8020989c (patch) | |
tree | e25a2d0c9d52e7e8c1bb507b3e17d700badd0123 | |
parent | 9d7316094203311a7464d3666ae7ebbce9db9869 (diff) | |
download | cowboy-bb08cf85e38f02d5785b2a23c38d3b4c8020989c.tar.gz cowboy-bb08cf85e38f02d5785b2a23c38d3b4c8020989c.tar.bz2 cowboy-bb08cf85e38f02d5785b2a23c38d3b4c8020989c.zip |
Remove a leftover ct:print
-rw-r--r-- | test/http_SUITE.erl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index 29fe4c3..862a110 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -620,6 +620,5 @@ rest_nodelete(Config) -> Request = "DELETE /nodelete HTTP/1.1\r\nHost: localhost\r\n\r\n", ok = gen_tcp:send(Socket, Request), {ok, Data} = gen_tcp:recv(Socket, 0, 6000), - ct:print("response ~p~n", [Data]), {0, 12} = binary:match(Data, <<"HTTP/1.1 500">>), ok = gen_tcp:close(Socket). |