From 4b53ea0a56c3bb9be67b679a8996927389279b43 Mon Sep 17 00:00:00 2001 From: utkarshcmu Date: Wed, 2 Nov 2016 13:55:39 -0700 Subject: [PATCH] Fixed pagerduty tests --- pkg/services/alerting/notifiers/pagerduty_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/alerting/notifiers/pagerduty_test.go b/pkg/services/alerting/notifiers/pagerduty_test.go index fb20450d930..76ae3ef963f 100644 --- a/pkg/services/alerting/notifiers/pagerduty_test.go +++ b/pkg/services/alerting/notifiers/pagerduty_test.go @@ -47,7 +47,7 @@ func TestPagerdutyNotifier(t *testing.T) { So(pagerdutyNotifier.Name, ShouldEqual, "pagerduty_testing") So(pagerdutyNotifier.Type, ShouldEqual, "pagerduty") So(pagerdutyNotifier.Key, ShouldEqual, "abcdefgh0123456789") - So(pagerdutyNotifier.AlertOnExecError, ShouldContain, true) + So(pagerdutyNotifier.AlertOnExecError, ShouldEqual, true) }) })