From 16ed1352395f1662d2b9285cfe603058e023a045 Mon Sep 17 00:00:00 2001 From: Drew Smirnoff Date: Sat, 23 May 2026 00:35:37 +0400 Subject: [PATCH] fix: #1329 test confict (#1347) ## What? Changes the test assertion due to #1329 changing the output to have `info: ` in front of it. Due to the PR not being rebased to have the #1316 commit. ## Why? Tests fail. Signed-off-by: drew --- view/html_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/html_test.go b/view/html_test.go index 080e59f046a3977d9bbdf3a2c399b8ea5ef6bdc5..e916bc04a218303b7884f237561efbd99421829b 100644 --- a/view/html_test.go +++ b/view/html_test.go @@ -88,7 +88,7 @@ func TestDebugImageProtocolUsesLogger(t *testing.T) { debugImageProtocol("hello %s", "world") - want := "[img-protocol] hello world\n" + want := "info: [img-protocol] hello world\n" if got := logBuf.String(); got != want { t.Fatalf("debugImageProtocol log output = %q, want %q", got, want) }