aboutsummaryrefslogtreecommitdiffstats
path: root/lib/runtime_tools/test/runtime_tools_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-04-22 16:16:57 +0200
committerBjörn-Egil Dahlberg <[email protected]>2016-04-22 16:16:57 +0200
commit77f4c4caab84c821a01bdffe78578781cc3a65b0 (patch)
tree225d321d09ff03888c4a440ef82ce4827194b7d0 /lib/runtime_tools/test/runtime_tools_SUITE.erl
parent8139ee676303736f8e5849323cd8f4fb6abed549 (diff)
downloadotp-77f4c4caab84c821a01bdffe78578781cc3a65b0.tar.gz
otp-77f4c4caab84c821a01bdffe78578781cc3a65b0.tar.bz2
otp-77f4c4caab84c821a01bdffe78578781cc3a65b0.zip
Replace ?t with test_server
The macro ?t is deprecated. Replace its use with 'test_server'.
Diffstat (limited to 'lib/runtime_tools/test/runtime_tools_SUITE.erl')
-rw-r--r--lib/runtime_tools/test/runtime_tools_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/runtime_tools/test/runtime_tools_SUITE.erl b/lib/runtime_tools/test/runtime_tools_SUITE.erl
index e1e7b85871..6877e1a379 100644
--- a/lib/runtime_tools/test/runtime_tools_SUITE.erl
+++ b/lib/runtime_tools/test/runtime_tools_SUITE.erl
@@ -37,11 +37,11 @@ all() ->
app_file(_Config) ->
- ok = ?t:app_test(runtime_tools),
+ ok = test_server:app_test(runtime_tools),
ok.
appup_file(_Config) ->
- ok = ?t:appup_test(runtime_tools).
+ ok = test_server:appup_test(runtime_tools).
start_stop_app(_Config) ->
ok = application:start(runtime_tools),