aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test_server
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2018-08-29 15:45:33 +0200
committerHans Bolinder <[email protected]>2019-01-17 09:51:34 +0100
commit8b21b2ef5c46f6a831beb9ee4445582c4558e8ba (patch)
tree04bbd5555dcf00f754c41ad69c2ed37cd6196530 /lib/common_test/test_server
parent401bd13ffd39052d4125fbc6fc8360dc08121883 (diff)
downloadotp-8b21b2ef5c46f6a831beb9ee4445582c4558e8ba.tar.gz
otp-8b21b2ef5c46f6a831beb9ee4445582c4558e8ba.tar.bz2
otp-8b21b2ef5c46f6a831beb9ee4445582c4558e8ba.zip
common_test: Adjust some calls to io:format()
Diffstat (limited to 'lib/common_test/test_server')
-rw-r--r--lib/common_test/test_server/ts_benchmark.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/test_server/ts_benchmark.erl b/lib/common_test/test_server/ts_benchmark.erl
index e4e06b54c2..a9486262b3 100644
--- a/lib/common_test/test_server/ts_benchmark.erl
+++ b/lib/common_test/test_server/ts_benchmark.erl
@@ -45,7 +45,7 @@ run(Specs, Opts, Vars) ->
|| Spec <- Specs],
file:delete(filename:join(Cwd,"latest_benchmark")),
{ok,D} = file:open(filename:join(Cwd,"latest_benchmark"),[write]),
- io:format(D,BDir,[]),
+ io:format(D,"~ts", [BDir]),
file:close(D).