diff options
author | Björn Gustavsson <[email protected]> | 2016-02-25 15:40:16 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-03-10 14:31:22 +0100 |
commit | 6588228827d92f4cb9883303f03abf84734947b0 (patch) | |
tree | f74e29127d6b62ebd325b5a067ca18214835dba3 /lib/kernel/test/file_SUITE.erl | |
parent | 2d17815c831829af13899c23b320b884e790cf9b (diff) | |
download | otp-6588228827d92f4cb9883303f03abf84734947b0.tar.gz otp-6588228827d92f4cb9883303f03abf84734947b0.tar.bz2 otp-6588228827d92f4cb9883303f03abf84734947b0.zip |
Eliminate use test_server:format()
Replace with io:format/2 or ct:pal/3.
Diffstat (limited to 'lib/kernel/test/file_SUITE.erl')
-rw-r--r-- | lib/kernel/test/file_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kernel/test/file_SUITE.erl b/lib/kernel/test/file_SUITE.erl index 2319f294f4..0e3ff89ca7 100644 --- a/lib/kernel/test/file_SUITE.erl +++ b/lib/kernel/test/file_SUITE.erl @@ -1454,7 +1454,7 @@ file_info_int(Config) -> %% platforms such as Windows95. RootDir = filename:join([proplists:get_value(priv_dir, Config)]), - ?line test_server:format("RootDir = ~p", [RootDir]), + io:format("RootDir = ~p", [RootDir]), ?line Name = filename:join(RootDir, atom_to_list(?MODULE) @@ -1535,7 +1535,7 @@ file_write_file_info(suite) -> []; file_write_file_info(doc) -> []; file_write_file_info(Config) when is_list(Config) -> ?line RootDir = get_good_directory(Config), - ?line test_server:format("RootDir = ~p", [RootDir]), + io:format("RootDir = ~p", [RootDir]), %% Set the file to read only AND update the file times at the same time. %% (This used to fail on Windows NT/95 for a local filesystem.) |