aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/shell_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-02-28 14:06:52 +0100
committerBjörn Gustavsson <[email protected]>2016-03-09 13:20:01 +0100
commitd5054f75f5a62bcb6c9b63e01d34d28f0867e21d (patch)
tree7953a203c6df38e7d4060988f7c81e11259efdb8 /lib/stdlib/test/shell_SUITE.erl
parent22785cd1e21600365e71fb0bd2835e5b53de8764 (diff)
downloadotp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.tar.gz
otp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.tar.bz2
otp-d5054f75f5a62bcb6c9b63e01d34d28f0867e21d.zip
Use 'test_server' instead of ?t macro
Diffstat (limited to 'lib/stdlib/test/shell_SUITE.erl')
-rw-r--r--lib/stdlib/test/shell_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/test/shell_SUITE.erl b/lib/stdlib/test/shell_SUITE.erl
index e1733292f6..7cd87f4871 100644
--- a/lib/stdlib/test/shell_SUITE.erl
+++ b/lib/stdlib/test/shell_SUITE.erl
@@ -608,12 +608,12 @@ otp_5435(Config) when is_list(Config) ->
?line true = is_alive(),
?line {ok, Node} = start_node(shell_SUITE_otp_5435),
?line ok = rpc:call(Node, ?MODULE, otp_5435_2, []),
- ?line ?t:stop_node(Node),
+ test_server:stop_node(Node),
ok.
start_node(Name) ->
?line PA = filename:dirname(code:which(?MODULE)),
- ?t:start_node(Name, slave, [{args, "-pa " ++ PA}]).
+ test_server:start_node(Name, slave, [{args, "-pa " ++ PA}]).
otp_5435_2() ->
?line true = code:del_path(compiler),