diff options
author | Björn Gustavsson <[email protected]> | 2016-02-28 14:06:52 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-09 13:20:01 +0100 |
commit | d5054f75f5a62bcb6c9b63e01d34d28f0867e21d (patch) | |
tree | 7953a203c6df38e7d4060988f7c81e11259efdb8 /lib/stdlib/test/stdlib_SUITE.erl | |
parent | 22785cd1e21600365e71fb0bd2835e5b53de8764 (diff) | |
download | otp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.tar.gz otp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.tar.bz2 otp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.zip |
Use 'test_server' instead of ?t macro
Diffstat (limited to 'lib/stdlib/test/stdlib_SUITE.erl')
-rw-r--r-- | lib/stdlib/test/stdlib_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/stdlib_SUITE.erl b/lib/stdlib/test/stdlib_SUITE.erl index c9970f84b2..41176814db 100644 --- a/lib/stdlib/test/stdlib_SUITE.erl +++ b/lib/stdlib/test/stdlib_SUITE.erl @@ -59,7 +59,7 @@ app_test(suite) -> app_test(doc) -> ["Application consistency test."]; app_test(Config) when is_list(Config) -> - ?t:app_test(stdlib), + test_server:app_test(stdlib), ok. %% Test that appup allows upgrade from/downgrade to a maximum of one |