fix: #1329 test confict (#1347)

Drew Smirnoff created

## 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 <me@andrinoff.com>

Change summary

view/html_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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)
 	}