diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:28:25 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-09 12:08:35 +0100 |
commit | ec35c6439d3707801c7527dd2ea01ef0aa0421ed (patch) | |
tree | 9c181cd70558e60a0be3109d6242f7aa2b1cb822 /lib/stdlib/test/io_SUITE.erl | |
parent | db87ef023f4660fd2129f30dbbff05e73bff3dd5 (diff) | |
download | otp-ec35c6439d3707801c7527dd2ea01ef0aa0421ed.tar.gz otp-ec35c6439d3707801c7527dd2ea01ef0aa0421ed.tar.bz2 otp-ec35c6439d3707801c7527dd2ea01ef0aa0421ed.zip |
Eliminate use of test_server:fail/0,1
Diffstat (limited to 'lib/stdlib/test/io_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/io_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/io_SUITE.erl b/lib/stdlib/test/io_SUITE.erl index 81fd3786ce..88d0f54d99 100644 --- a/lib/stdlib/test/io_SUITE.erl +++ b/lib/stdlib/test/io_SUITE.erl @@ -2295,7 +2295,7 @@ do_io_with_huge_message_queue(Config) -> ok; Q -> io:format("Q = ~p", [Q]), - ?t:fail() + ct:fail(failed) end, ok. @@ -2368,7 +2368,7 @@ re_fmt(Pattern, Format, Args) -> nomatch -> io:format("Pattern: ~s", [Pattern]), io:format("Result: ~s", [S]), - ?t:fail(); + ct:fail(failed); match -> ok end. |