chore: fix golines formatting for CI

This commit is contained in:
dj-oyu 2026-03-04 05:05:37 +09:00
parent fa5a97ca47
commit d882ff9260
2 changed files with 14 additions and 7 deletions

View file

@ -25,7 +25,14 @@ func TestWithTelegramThread(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
got := al.withTelegramThread(tc.channel, tc.chatID, tc.threadID)
if got != tc.want {
t.Fatalf("withTelegramThread(%q, %q, %d) = %q, want %q", tc.channel, tc.chatID, tc.threadID, got, tc.want)
t.Fatalf(
"withTelegramThread(%q, %q, %d) = %q, want %q",
tc.channel,
tc.chatID,
tc.threadID,
got,
tc.want,
)
}
})
}