From 6b4bc0cc643819ffeaa2edd9ef2a016d534a25ff Mon Sep 17 00:00:00 2001 From: shanglei Date: Thu, 28 May 2026 16:51:17 +0800 Subject: [PATCH] style(shortcuts): gofmt binder_test.go CI fast-gate's `gofmt -l .` flagged an alignment issue in contentBucket: gofmt aligns struct field tags to the longest *named* tag-bearing field in the group; my hand-written extra spaces in `Text *string \`flag:"ct"\`` got normalised to a single space. Behaviour-neutral; tests still pass. --- shortcuts/common/binder_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shortcuts/common/binder_test.go b/shortcuts/common/binder_test.go index 5dbbc166d..b9fa3e4a0 100644 --- a/shortcuts/common/binder_test.go +++ b/shortcuts/common/binder_test.go @@ -240,7 +240,7 @@ type vidGroup struct { Cover string `flag:"vid-cover"` } type contentBucket struct { - Text *string `flag:"ct"` + Text *string `flag:"ct"` Video *vidGroup }