diff options
author | Siri Hansen <[email protected]> | 2016-03-31 13:29:16 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-03-31 13:29:16 +0200 |
commit | 785079d7d9c797b57dce9f8ff4dbf4b4fb7042a9 (patch) | |
tree | 40b6bfe1d77d343ab5819137f5890756dfb7218b | |
parent | e9929ee372001f6ce44697c0e71b93fc6db61f9c (diff) | |
parent | 69d324dd89f1a801ad33c4f8cba32c3d248b37eb (diff) | |
download | otp-785079d7d9c797b57dce9f8ff4dbf4b4fb7042a9.tar.gz otp-785079d7d9c797b57dce9f8ff4dbf4b4fb7042a9.tar.bz2 otp-785079d7d9c797b57dce9f8ff4dbf4b4fb7042a9.zip |
Merge branch 'sstrigler/ct_logs_add_blank'
* sstrigler/ct_logs_add_blank:
Add blank before dots
-rw-r--r-- | lib/common_test/src/ct_logs.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_logs.erl b/lib/common_test/src/ct_logs.erl index 4920383f39..aead898614 100644 --- a/lib/common_test/src/ct_logs.erl +++ b/lib/common_test/src/ct_logs.erl @@ -1833,7 +1833,7 @@ make_all_runs_index(When) -> AbsName = ?abs(?all_runs_name), notify_and_lock_file(AbsName), if When == start -> ok; - true -> io:put_chars("Updating " ++ AbsName ++ "... ") + true -> io:put_chars("Updating " ++ AbsName ++ " ... ") end, %% check if log cache should be used, and if it exists @@ -2572,7 +2572,7 @@ update_tests_in_cache(TempData,LogCache=#log_cache{tests=Tests}) -> make_all_suites_index1(When, AbsIndexName, AllTestLogDirs) -> IndexName = ?index_name, if When == start -> ok; - true -> io:put_chars("Updating " ++ AbsIndexName ++ "... ") + true -> io:put_chars("Updating " ++ AbsIndexName ++ " ... ") end, case catch make_all_suites_index2(IndexName, AllTestLogDirs) of {'EXIT', Reason} -> |