diff options
author | Loïc Hoguin <[email protected]> | 2013-08-26 19:08:38 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-08-26 19:08:38 +0200 |
commit | 5347bd3335f45f244f82e5f10da3993d9fdc56a3 (patch) | |
tree | 28f79c3d5554ef2cb898dfe8cd751a63a62cb2c5 /test | |
parent | e176953cd095e8c65d56461f840a14d53c57a1c1 (diff) | |
download | gun-5347bd3335f45f244f82e5f10da3993d9fdc56a3.tar.gz gun-5347bd3335f45f244f82e5f10da3993d9fdc56a3.tar.bz2 gun-5347bd3335f45f244f82e5f10da3993d9fdc56a3.zip |
Add gun:open/2
Diffstat (limited to 'test')
-rw-r--r-- | test/twitter_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl index ba3f949..ad698a3 100644 --- a/test/twitter_SUITE.erl +++ b/test/twitter_SUITE.erl @@ -48,7 +48,7 @@ end_per_suite(_) -> ok. spdy(_) -> - {ok, Pid} = gun:open("twitter.com", 443, []), + {ok, Pid} = gun:open("twitter.com", 443), Ref = gun:get(Pid, "/"), receive {gun_response, Pid, Ref, Status, Headers} -> |