diff options
author | Stefan Strigler <[email protected]> | 2016-02-10 16:14:57 +0000 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2016-03-24 11:25:35 +0100 |
commit | 69d324dd89f1a801ad33c4f8cba32c3d248b37eb (patch) | |
tree | 41af5b96926701692bf3fad4622f4c44c70610a5 /lib/common_test | |
parent | 9615753e42d55b3bad042791a1b36b0ef7f0090a (diff) | |
download | otp-69d324dd89f1a801ad33c4f8cba32c3d248b37eb.tar.gz otp-69d324dd89f1a801ad33c4f8cba32c3d248b37eb.tar.bz2 otp-69d324dd89f1a801ad33c4f8cba32c3d248b37eb.zip |
Add blank before dots
This helps selecting the generated files by double clicking.
Diffstat (limited to 'lib/common_test')
-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} -> |