From 41c326c961aa28a56408b43977a10439cfe5e128 Mon Sep 17 00:00:00 2001 From: hl-valdemar Date: Mon, 20 Jul 2026 08:57:12 +0200 Subject: [PATCH] fiddling with presentation --- std/testing/testing.hon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }