chore: fix golines formatting for CI
This commit is contained in:
parent
fa5a97ca47
commit
d882ff9260
2 changed files with 14 additions and 7 deletions
|
|
@ -25,7 +25,14 @@ func TestWithTelegramThread(t *testing.T) {
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
got := al.withTelegramThread(tc.channel, tc.chatID, tc.threadID)
|
got := al.withTelegramThread(tc.channel, tc.chatID, tc.threadID)
|
||||||
if got != tc.want {
|
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,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue