From 1acab59fc7136fea9d7f7edd7ca37117996bd341 Mon Sep 17 00:00:00 2001 From: lc6464 <64722907+lc6464@users.noreply.github.com> Date: Sun, 26 Apr 2026 19:48:22 +0800 Subject: [PATCH] fix(tests): format error message --- pkg/channels/manager_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/channels/manager_test.go b/pkg/channels/manager_test.go index 8803134db..1a783cc3e 100644 --- a/pkg/channels/manager_test.go +++ b/pkg/channels/manager_test.go @@ -1160,7 +1160,10 @@ func TestPreSend_ThoughtPlaceholderDeleteAndSkipsEdit(t *testing.T) { msgIDs, handled := m.preSend(context.Background(), "test", msg, ch) if handled { - t.Fatalf("expected thought message to fall through so the channel can send a structured message, got %v", msgIDs) + t.Fatalf( + "expected thought message to fall through so the channel can send a structured message, got %v", + msgIDs, + ) } if ch.deleteCalls != 1 { t.Fatalf("expected placeholder deletion, got %d delete calls", ch.deleteCalls)