diff options
Diffstat (limited to 'test/twitter_SUITE.erl')
-rw-r--r-- | test/twitter_SUITE.erl | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl index 6cd53c4..84307a2 100644 --- a/test/twitter_SUITE.erl +++ b/test/twitter_SUITE.erl @@ -16,7 +16,7 @@ -compile(export_all). all() -> - [http, http2, spdy]. + [http, http2]. http(_) -> {ok, Pid} = gun:open("twitter.com", 443, #{protocols => [http]}), @@ -28,11 +28,6 @@ http2(_) -> {ok, http2} = gun:await_up(Pid), common(Pid). -spdy(_) -> - {ok, Pid} = gun:open("twitter.com", 443, #{protocols => [spdy]}), - {ok, spdy} = gun:await_up(Pid), - common(Pid). - common(Pid) -> Ref = gun:get(Pid, "/"), receive |