Explorar el Código

stackdriver: use more appropriate test data

Erik Sundell hace 7 años
padre
commit
3c6c456592
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      pkg/tsdb/stackdriver/stackdriver_test.go

+ 3 - 3
pkg/tsdb/stackdriver/stackdriver_test.go

@@ -68,7 +68,7 @@ func TestStackdriver(t *testing.T) {
 			})
 
 			Convey("and alignmentPeriod is set to grafana-auto", func() {
-				Convey("and IntervalMs is larger than 60", func() {
+				Convey("and IntervalMs is larger than 60000", func() {
 					tsdbQuery.Queries[0].IntervalMs = 1000000
 					tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{
 						"target":          "target",
@@ -80,8 +80,8 @@ func TestStackdriver(t *testing.T) {
 					So(err, ShouldBeNil)
 					So(queries[0].Params["aggregation.alignmentPeriod"][0], ShouldEqual, `+1000s`)
 				})
-				Convey("and IntervalMs is less than 60", func() {
-					tsdbQuery.Queries[0].IntervalMs = 30
+				Convey("and IntervalMs is less than 60000", func() {
+					tsdbQuery.Queries[0].IntervalMs = 30000
 					tsdbQuery.Queries[0].Model = simplejson.NewFromAny(map[string]interface{}{
 						"target":          "target",
 						"alignmentPeriod": "grafana-auto",