diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-01 17:50:22 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-01 17:50:22 +0200 |
commit | ab8b414921a2fe2738d7fcc0e66fe382a39ed247 (patch) | |
tree | e643bcf4671be7f95668221067cbfedaf44ae960 /lib/os_mon/test/cpu_sup_SUITE.erl | |
parent | ddff69ac445fe073682ac8aa9b9951b41ee450ef (diff) | |
download | otp-ab8b414921a2fe2738d7fcc0e66fe382a39ed247.tar.gz otp-ab8b414921a2fe2738d7fcc0e66fe382a39ed247.tar.bz2 otp-ab8b414921a2fe2738d7fcc0e66fe382a39ed247.zip |
Eliminate use of test_server:fail/0,1
Diffstat (limited to 'lib/os_mon/test/cpu_sup_SUITE.erl')
-rw-r--r-- | lib/os_mon/test/cpu_sup_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/os_mon/test/cpu_sup_SUITE.erl b/lib/os_mon/test/cpu_sup_SUITE.erl index 597e53044d..bbdd46c21e 100644 --- a/lib/os_mon/test/cpu_sup_SUITE.erl +++ b/lib/os_mon/test/cpu_sup_SUITE.erl @@ -222,7 +222,7 @@ port(Config) when is_list(Config) -> %% cpu_sup should not terminate receive {'DOWN', MonRef, _, _, Reason} -> - ?t:fail({unexpected_exit_reason, Reason}) + ct:fail({unexpected_exit_reason, Reason}) after 3000 -> ok end, |