diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-09-03 17:48:17 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-09-03 18:07:30 -0400 |
| commit | 88724b2a89157ecc3a8eea03aa0f8a6b66829915 (patch) | |
| tree | 13e2a2c87ef01627388bcec7bdbb8c51199bcf8b /lib/std/special | |
| parent | 10344591704b9d7317eeaca44681eabd769c4486 (diff) | |
| download | zig-88724b2a89157ecc3a8eea03aa0f8a6b66829915.tar.gz zig-88724b2a89157ecc3a8eea03aa0f8a6b66829915.zip | |
Introduces a space after the ellipsis for test and progress.
Diffstat (limited to 'lib/std/special')
| -rw-r--r-- | lib/std/special/test_runner.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/special/test_runner.zig b/lib/std/special/test_runner.zig index 87b011ede8..b9452b79cc 100644 --- a/lib/std/special/test_runner.zig +++ b/lib/std/special/test_runner.zig @@ -40,7 +40,7 @@ pub fn main() anyerror!void { test_node.activate(); progress.refresh(); if (progress.terminal == null) { - std.debug.print("{}/{} {}...", .{ i + 1, test_fn_list.len, test_fn.name }); + std.debug.print("{}/{} {}... ", .{ i + 1, test_fn_list.len, test_fn.name }); } const result = if (test_fn.async_frame_size) |size| switch (io_mode) { .evented => blk: { |
