test(alerting): fix broken tests

This commit is contained in:
bergquist 2016-08-16 08:12:55 +02:00
parent 6b90587d27
commit b5d92b6191

View File

@ -36,7 +36,7 @@ func TestQueryCondition(t *testing.T) {
Convey("Can read evaluator", func() {
evaluator, ok := ctx.condition.Evaluator.(*DefaultAlertEvaluator)
So(ok, ShouldBeTrue)
So(evaluator.Type, ShouldEqual, ">")
So(evaluator.Type, ShouldEqual, "gt")
})
})