From a0b2bbf1edda01a89f50c0fb56d757ec26c464aa Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 3 Jan 2021 03:14:19 -0600 Subject: [PATCH] typo --- backend/app/notify/telegram_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/notify/telegram_test.go b/backend/app/notify/telegram_test.go index 1b926035..811b259a 100644 --- a/backend/app/notify/telegram_test.go +++ b/backend/app/notify/telegram_test.go @@ -157,7 +157,7 @@ func TestTelegram_escapeTitle(t *testing.T) { tb := Telegram{} for i, tt := range tbl { - tt = tt + tt := tt t.Run(strconv.Itoa(i), func(t *testing.T) { assert.Equal(t, tt.out, tb.escapeTitle(tt.inp)) })