style: fix gofumpt formatting in form_mapping_test.go

Group consecutive var declarations to satisfy gofumpt linter.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Varun Chawla 2026-02-19 22:31:55 -08:00
parent 95673e7f43
commit 7ba63f3523
No known key found for this signature in database

View File

@ -1255,8 +1255,10 @@ func (d *testDualUnmarshaler) UnmarshalText(text []byte) error {
return nil
}
var _ BindUnmarshaler = (*testDualUnmarshaler)(nil)
var _ encoding.TextUnmarshaler = (*testDualUnmarshaler)(nil)
var (
_ BindUnmarshaler = (*testDualUnmarshaler)(nil)
_ encoding.TextUnmarshaler = (*testDualUnmarshaler)(nil)
)
func TestMappingBindUnmarshalerTakesPrecedenceOverTextUnmarshaler(t *testing.T) {
var s struct {