diff options
author | Björn Gustavsson <[email protected]> | 2016-03-03 15:14:01 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-10 14:31:22 +0100 |
commit | 2d17815c831829af13899c23b320b884e790cf9b (patch) | |
tree | 875fd7622aaf27df15adcbe7b4d5c3e18eade778 /lib/kernel/test/rpc_SUITE.erl | |
parent | ca290148fbde80f1cda249c1c15562c5bc9aedaa (diff) | |
download | otp-2d17815c831829af13899c23b320b884e790cf9b.tar.gz otp-2d17815c831829af13899c23b320b884e790cf9b.tar.bz2 otp-2d17815c831829af13899c23b320b884e790cf9b.zip |
Eliminate use of test_server:sleep/1
Diffstat (limited to 'lib/kernel/test/rpc_SUITE.erl')
-rw-r--r-- | lib/kernel/test/rpc_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kernel/test/rpc_SUITE.erl b/lib/kernel/test/rpc_SUITE.erl index b45e6bdb59..0b03079c37 100644 --- a/lib/kernel/test/rpc_SUITE.erl +++ b/lib/kernel/test/rpc_SUITE.erl @@ -138,9 +138,9 @@ multicall_timeout(Config) when is_list(Config) -> ?line {ok, N4} = ?t:start_node('2_rcp_SUITE_multicall', slave, [{args, "-pa " ++ PA}]), ?line ok = io:format("~p~n", [[N1, N2]]), - ?line {[{hej,_,N3},{hej,_,N4}],[N1, N2]} = - rpc:multicall([N3, N1, N2, N4], ?MODULE, f, [], ?t:seconds(6)), - ?t:sleep(?t:seconds(8)), %% Wait for late answers + {[{hej,_,N3},{hej,_,N4}],[N1, N2]} = + rpc:multicall([N3, N1, N2, N4], ?MODULE, f, [], 6000), + ct:sleep({seconds,8}), %Wait for late answers ?line Msgs = flush([]), ?line [] = Msgs, ?line ?t:stop_node(N1), @@ -481,7 +481,7 @@ async_call(Config) when is_list(Config) -> ?line timeout = rpc:nb_yield(Promise2, 10), %% Let Node1 finish its work before yielding. - ?t:sleep(?t:seconds(2)), + ct:sleep({seconds,2}), ?line {hej,_,Node1} = rpc:yield(Promise1), %% Wait for the Node2 and Node3. |