Renamed Initialized to Pending

This commit is contained in:
utkarshcmu
2016-11-01 07:30:55 -07:00
parent dcaae47e96
commit d9f2519916
5 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ func TestAlertingDataAccess(t *testing.T) {
So(err2, ShouldBeNil)
So(alert.Name, ShouldEqual, "Alerting title")
So(alert.Message, ShouldEqual, "Alerting message")
So(alert.State, ShouldEqual, "initialized")
So(alert.State, ShouldEqual, "pending")
So(alert.Frequency, ShouldEqual, 1)
})
@@ -77,7 +77,7 @@ func TestAlertingDataAccess(t *testing.T) {
So(query.Result[0].Name, ShouldEqual, "Name")
Convey("Alert state should not be updated", func() {
So(query.Result[0].State, ShouldEqual, "initialized")
So(query.Result[0].State, ShouldEqual, "pending")
})
})