From f8f2273aec05097b58879f2ef5fac7284054c971 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 5 Aug 2026 13:29:28 -0400 Subject: [PATCH] =?UTF-8?q?style:=20gofmt=20alignment=20in=20library=5Fbro?= =?UTF-8?q?wse=5Ftest=20=E2=80=94=20#367?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit One space. `name:` had to align with `query:` inside a composite literal where both sat on their own lines. Found via `docker run golang:1.25-alpine gofmt -l`, which is the actual point of this commit: gofmt is available here the same way sqlc is, and there is no reason to have let CI discover a formatting nit. Whole tree verified clean, not just this file. The substance of 1126bfcf was already sound — verify-generate, vet and the full integration suite passed, so the genre-splitting behaviour holds against a real database. Only the formatter objected. --- internal/api/library_browse_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/library_browse_test.go b/internal/api/library_browse_test.go index a20386e9..dee9b7ed 100644 --- a/internal/api/library_browse_test.go +++ b/internal/api/library_browse_test.go @@ -47,7 +47,7 @@ func TestParseYearFilter(t *testing.T) { wantErr: errInvertedYearRange, }, { - name: "whitespace-only values are treated as absent", + name: "whitespace-only values are treated as absent", query: "year_from=%20&year_to=%20", wantActive: false, }, }