diff options
author | Ingela Anderton Andin <[email protected]> | 2013-09-11 15:56:31 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-09-13 15:14:06 +0200 |
commit | 7d8397a7c9abdee42a1da57ba6b1bbc4b9f6a5c3 (patch) | |
tree | c217dc3496f20d1df107c8029a418a9c526d5aa7 /lib/inets/test | |
parent | 89f541f6f9d4b90155c2a3b5e81194327810f693 (diff) | |
download | otp-7d8397a7c9abdee42a1da57ba6b1bbc4b9f6a5c3.tar.gz otp-7d8397a7c9abdee42a1da57ba6b1bbc4b9f6a5c3.tar.bz2 otp-7d8397a7c9abdee42a1da57ba6b1bbc4b9f6a5c3.zip |
inets: httpc make httpc_cancel_request/[1,2] asynchronous
Diffstat (limited to 'lib/inets/test')
-rw-r--r-- | lib/inets/test/httpc_SUITE.erl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl index e075de2517..818edc12ac 100644 --- a/lib/inets/test/httpc_SUITE.erl +++ b/lib/inets/test/httpc_SUITE.erl @@ -305,13 +305,8 @@ async(Config) when is_list(Config) -> {ok, NewRequestId} = httpc:request(get, Request, [], [{sync, false}]), - ok = httpc:cancel_request(NewRequestId), - receive - {http, {NewRequestId, _}} -> - ct:fail(http_cancel_request_failed) - after 3000 -> - ok - end. + ok = httpc:cancel_request(NewRequestId). + %%------------------------------------------------------------------------- save_to_file() -> [{doc, "Test to save the http body to a file"}]. @@ -1143,7 +1138,7 @@ receive_replys([ID|IDs]) -> {http, {ID, {{_, 200, _}, [_|_], _}}} -> receive_replys(IDs); {http, {Other, {{_, 200, _}, [_|_], _}}} -> - ct:fail({recived_canceld_id, Other}) + ct:pal({recived_canceld_id, Other}) end. %% Perform a synchronous stop |