aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-13 15:56:58 +0100
committerLoïc Hoguin <[email protected]>2018-11-13 15:56:58 +0100
commitf9d689f9fd17c2e09b414ac974cc20a57a2256fd (patch)
treec023d78717ba9e141379e72c4720435c3b055e65
parent8d920f3db97067159fcf6ca497979f8e063986dc (diff)
downloadcowboy-f9d689f9fd17c2e09b414ac974cc20a57a2256fd.tar.gz
cowboy-f9d689f9fd17c2e09b414ac974cc20a57a2256fd.tar.bz2
cowboy-f9d689f9fd17c2e09b414ac974cc20a57a2256fd.zip
Remove two unnecessary debug calls
-rw-r--r--test/compress_SUITE.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/compress_SUITE.erl b/test/compress_SUITE.erl
index 06b3950..74be4f9 100644
--- a/test/compress_SUITE.erl
+++ b/test/compress_SUITE.erl
@@ -126,7 +126,6 @@ gzip_stream_reply_sendfile(Config) ->
{200, Headers, GzBody} = do_get("/stream_reply/sendfile",
[{<<"accept-encoding">>, <<"gzip">>}], Config),
{_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers),
- file:write_file("/tmp/test.gz", GzBody),
_ = zlib:gunzip(GzBody),
ok.
@@ -135,7 +134,6 @@ gzip_stream_reply_sendfile_fin(Config) ->
{200, Headers, GzBody} = do_get("/stream_reply/sendfile_fin",
[{<<"accept-encoding">>, <<"gzip">>}], Config),
{_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers),
- file:write_file("/tmp/test.gz", GzBody),
_ = zlib:gunzip(GzBody),
ok.