aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/compile_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-02-25 15:45:21 +0100
committerBjörn Gustavsson <[email protected]>2016-02-25 15:53:34 +0100
commitb180108aed3f44654aae70e3b59a8e6fb02df995 (patch)
tree65a0a9da19bb89b59dbdfab31d882b85a229f9e7 /lib/compiler/test/compile_SUITE.erl
parent3d03356f718f64ca0e33b715f306219db86a4b0a (diff)
downloadotp-b180108aed3f44654aae70e3b59a8e6fb02df995.tar.gz
otp-b180108aed3f44654aae70e3b59a8e6fb02df995.tar.bz2
otp-b180108aed3f44654aae70e3b59a8e6fb02df995.zip
Replace ?t with test_server
The macro ?t is deprecated. Replace its use with 'test_server'.
Diffstat (limited to 'lib/compiler/test/compile_SUITE.erl')
-rw-r--r--lib/compiler/test/compile_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl
index f3217b8c39..4eb42f81cc 100644
--- a/lib/compiler/test/compile_SUITE.erl
+++ b/lib/compiler/test/compile_SUITE.erl
@@ -71,11 +71,11 @@ end_per_group(_GroupName, Config) ->
%% Test that the Application file has no `basic' errors.";
app_test(Config) when is_list(Config) ->
- ?line ?t:app_test(compiler).
+ test_server:app_test(compiler).
%% Test that the Application upgrade file has no `basic' errors.";
appup_test(Config) when is_list(Config) ->
- ok = ?t:appup_test(compiler).
+ ok = test_server:appup_test(compiler).
%% Tests that we can compile and run a simple Erlang program,
%% using compile:file/1.