diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:45:21 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-25 15:53:34 +0100 |
commit | b180108aed3f44654aae70e3b59a8e6fb02df995 (patch) | |
tree | 65a0a9da19bb89b59dbdfab31d882b85a229f9e7 /lib/compiler/test/inline_SUITE.erl | |
parent | 3d03356f718f64ca0e33b715f306219db86a4b0a (diff) | |
download | otp-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/inline_SUITE.erl')
-rw-r--r-- | lib/compiler/test/inline_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/inline_SUITE.erl b/lib/compiler/test/inline_SUITE.erl index cb552e16e3..004a51f7dd 100644 --- a/lib/compiler/test/inline_SUITE.erl +++ b/lib/compiler/test/inline_SUITE.erl @@ -48,7 +48,7 @@ init_per_suite(Config) -> end_per_suite(Config) -> Node = proplists:get_value(testing_node, Config), - ?t:stop_node(Node), + test_server:stop_node(Node), ok. init_per_group(_GroupName, Config) -> |