diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 18:42:07 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 18:42:07 +0200 |
commit | 1e7422e64ef5f0713115715abb3925b690796b77 (patch) | |
tree | 671f09da26162a64c356a7ca4b8695197507abab /erts/emulator/test | |
parent | 26d589332638b6652786801d96961e69281bc458 (diff) | |
download | otp-1e7422e64ef5f0713115715abb3925b690796b77.tar.gz otp-1e7422e64ef5f0713115715abb3925b690796b77.tar.bz2 otp-1e7422e64ef5f0713115715abb3925b690796b77.zip |
Use ct:fail/1 instead of test_server:fail/1
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/scheduler_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/scheduler_SUITE.erl b/erts/emulator/test/scheduler_SUITE.erl index 64c280b198..20e473d327 100644 --- a/erts/emulator/test/scheduler_SUITE.erl +++ b/erts/emulator/test/scheduler_SUITE.erl @@ -1733,7 +1733,7 @@ sched_state([], N, DC, DI) -> {N, DC, DI} catch _ : _ -> - ?t:fail({inconsisten_scheduler_state, {N, DC, DI}}) + ct:fail({inconsisten_scheduler_state, {N, DC, DI}}) end; sched_state([{normal, _, _, _} = S | Rest], _S, DC, DI) -> sched_state(Rest, S, DC, DI); |