diff options
author | Zandra <[email protected]> | 2016-05-30 12:09:18 +0200 |
---|---|---|
committer | Zandra Hird <[email protected]> | 2016-06-07 14:34:37 +0200 |
commit | 44c31f513b11e5bca7fbdb96f136b58e423a7dc6 (patch) | |
tree | 556b771816d2575b8f8fa9f65e102b8dc4c5614d /lib/common_test | |
parent | 47b6a312581a6e65292fc4b2ba5b8c16c30c9394 (diff) | |
download | otp-44c31f513b11e5bca7fbdb96f136b58e423a7dc6.tar.gz otp-44c31f513b11e5bca7fbdb96f136b58e423a7dc6.tar.bz2 otp-44c31f513b11e5bca7fbdb96f136b58e423a7dc6.zip |
ct_rpc: Fix unmatched_return warnings
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/src/ct_rpc.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_rpc.erl b/lib/common_test/src/ct_rpc.erl index cbcc212bb8..b4a0bc9d74 100644 --- a/lib/common_test/src/ct_rpc.erl +++ b/lib/common_test/src/ct_rpc.erl @@ -81,7 +81,7 @@ app_node(App, [], _, _) -> app_node(App, _Candidates = [CandidateNode | Nodes], FailOnBadRPC, Cookie) -> Cookie0 = set_the_cookie(Cookie), Result = rpc:call(CandidateNode, application, which_applications, []), - set_the_cookie(Cookie0), + _ = set_the_cookie(Cookie0), case Result of {badrpc,Reason} when FailOnBadRPC == true -> ct:fail({Reason,CandidateNode}); @@ -145,7 +145,7 @@ call({Fun, FunArgs}, Module, Function, Args, TimeOut, Cookie) -> call(Node, Module, Function, Args, TimeOut, Cookie) when is_atom(Node) -> Cookie0 = set_the_cookie(Cookie), Result = rpc:call(Node, Module, Function, Args, TimeOut), - set_the_cookie(Cookie0), + _ = set_the_cookie(Cookie0), Result. %%% @spec cast(Node, Module, Function, Args) -> ok @@ -190,7 +190,7 @@ cast({Fun, FunArgs}, Module, Function, Args, Cookie) -> cast(Node, Module, Function, Args, Cookie) when is_atom(Node) -> Cookie0 = set_the_cookie(Cookie), true = rpc:cast(Node, Module, Function, Args), - set_the_cookie(Cookie0), + _ = set_the_cookie(Cookie0), ok. |