aboutsummaryrefslogtreecommitdiffstats
path: root/test/rfc7231_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-09-06 15:37:42 +0200
committerLoïc Hoguin <[email protected]>2019-09-06 15:37:42 +0200
commit36836594f83a9dfdb30472a792d7ff73b3b48e3e (patch)
tree3f65fd92ebc0798fc147ccd8e8269c09f564ced0 /test/rfc7231_SUITE.erl
parent86c16fdccc48b1e97424a1e1fd59d95ebf4a35a3 (diff)
downloadcowboy-36836594f83a9dfdb30472a792d7ff73b3b48e3e.tar.gz
cowboy-36836594f83a9dfdb30472a792d7ff73b3b48e3e.tar.bz2
cowboy-36836594f83a9dfdb30472a792d7ff73b3b48e3e.zip
Fix tests failing following Gun update to master
Diffstat (limited to 'test/rfc7231_SUITE.erl')
-rw-r--r--test/rfc7231_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rfc7231_SUITE.erl b/test/rfc7231_SUITE.erl
index 89ec7b4..1b8776e 100644
--- a/test/rfc7231_SUITE.erl
+++ b/test/rfc7231_SUITE.erl
@@ -157,7 +157,7 @@ method_delete(Config) ->
% ConnPid = gun_open(Config),
% Ref = gun:request(ConnPid, <<"CONNECT">>, "localhost:8080", [
% {<<"accept-encoding">>, <<"gzip">>}
-% ]),
+% ], <<>>),
% {response, fin, 501, _} = gun:await(ConnPid, Ref),
% ok.
@@ -212,7 +212,7 @@ method_trace(Config) ->
ConnPid = gun_open(Config),
Ref = gun:request(ConnPid, <<"TRACE">>, "/", [
{<<"accept-encoding">>, <<"gzip">>}
- ]),
+ ], <<>>),
{response, fin, 501, _} = gun:await(ConnPid, Ref),
ok.