diff --git a/std/testing/testing.hon b/std/testing/testing.hon index e5e08c0..b5932ae 100644 --- a/std/testing/testing.hon +++ b/std/testing/testing.hon @@ -51,10 +51,10 @@ expect_type func($Expected, $Actual type, _ Actual, location SourceLocation) voi run func(name []u8, callback *func() void ! Error) bool { callback() catch |_| { - debug.print("{s} [failed]\n", {name,}) + debug.print("{s}...[failed]\n", {name,}) return false } - debug.print("{s} [ok]\n", {name,}) + debug.print("{s}...[ok]\n", {name,}) return true }