From 1725bf773f53d6c8089e42fad084079a2d39c13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=A4ggmark?= Date: Thu, 25 Feb 2021 08:59:26 +0100 Subject: [PATCH] Chore: Fixes small typos (#31461) --- pkg/services/ngalert/database_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/services/ngalert/database_test.go b/pkg/services/ngalert/database_test.go index e8a814c23fb..827a4468407 100644 --- a/pkg/services/ngalert/database_test.go +++ b/pkg/services/ngalert/database_test.go @@ -42,14 +42,14 @@ func TestCreatingAlertDefinition(t *testing.T) { expectedUpdated time.Time }{ { - desc: "should create successfuly an alert definition with default interval", + desc: "should create successfully an alert definition with default interval", inputIntervalSeconds: nil, inputTitle: "a name", expectedInterval: defaultIntervalSeconds, expectedUpdated: time.Unix(0, 0).UTC(), }, { - desc: "should create successfuly an alert definition with custom interval", + desc: "should create successfully an alert definition with custom interval", inputIntervalSeconds: &customIntervalSeconds, inputTitle: "another name", expectedInterval: customIntervalSeconds,