diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 15:54:06 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-07 16:02:12 +0200 |
commit | fba6f786f26aac535fe2c9f3c10472efe841cb09 (patch) | |
tree | 5fc8657001ed6d2cacc7320945b3e2084e4fedaa /lib/tools/test/tools_SUITE.erl | |
parent | a5fd45224765c2e06dd5bb3b2e0548bc747f042a (diff) | |
download | otp-fba6f786f26aac535fe2c9f3c10472efe841cb09.tar.gz otp-fba6f786f26aac535fe2c9f3c10472efe841cb09.tar.bz2 otp-fba6f786f26aac535fe2c9f3c10472efe841cb09.zip |
Replace ?t with test_server
The macro ?t is deprecated. Replace its use with 'test_server'.
Diffstat (limited to 'lib/tools/test/tools_SUITE.erl')
-rw-r--r-- | lib/tools/test/tools_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tools/test/tools_SUITE.erl b/lib/tools/test/tools_SUITE.erl index 07baf79c1b..40f3911ee7 100644 --- a/lib/tools/test/tools_SUITE.erl +++ b/lib/tools/test/tools_SUITE.erl @@ -45,8 +45,8 @@ app_test(doc) -> app_test(suite) -> []; app_test(Config) when is_list(Config) -> - ?t:app_test(tools, tolerant). + test_server:app_test(tools, tolerant). %% Test that the .appup file does not contain any `basic' errors appup_test(Config) when is_list(Config) -> - ok = ?t:appup_test(tools). + ok = test_server:appup_test(tools). |