aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2017-12-18 11:06:49 +0100
committerIngela Anderton Andin <[email protected]>2017-12-18 11:25:05 +0100
commitf200ae114c8f3e274f74e9c707ba67c659ef2415 (patch)
treec8c09c5afce9c2c830aa4e9484bbe1e301bc0ff5
parent9b61f4f4b26a77ca08b2a4a4f7776aac58bdff53 (diff)
downloadotp-f200ae114c8f3e274f74e9c707ba67c659ef2415.tar.gz
otp-f200ae114c8f3e274f74e9c707ba67c659ef2415.tar.bz2
otp-f200ae114c8f3e274f74e9c707ba67c659ef2415.zip
inets: Add missing argument in httpc_SUITE
-rw-r--r--lib/inets/test/httpc_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/httpc_SUITE.erl b/lib/inets/test/httpc_SUITE.erl
index 03178b3b2e..2ad041cc0d 100644
--- a/lib/inets/test/httpc_SUITE.erl
+++ b/lib/inets/test/httpc_SUITE.erl
@@ -1556,7 +1556,7 @@ dummy_request_handler_loop({Module, Function, Args}, SockType, Socket) ->
handle_request(Module, Function, Args, Socket) ->
case Module:Function(Args) of
{ok, Result} ->
- case handle_http_msg(Result, Socket) of
+ case handle_http_msg(Result, Socket, []) of
stop ->
stop;
<<>> ->
@@ -1581,7 +1581,7 @@ handle_request(Module, Function, Args, Socket) ->
NewMFA
end.
-handle_http_msg({Method, RelUri, _, {_, Headers}, Body}, Socket) ->
+handle_http_msg({Method, RelUri, _, {_, Headers}, Body}, Socket, _) ->
ct:print("Request: ~p ~p", [Method, RelUri]),
NextRequest =