Explorar el Código

build: fixed unit test

Torkel Ödegaard hace 8 años
padre
commit
50e70cf3db
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pkg/tsdb/mysql/macros_test.go

+ 1 - 1
pkg/tsdb/mysql/macros_test.go

@@ -25,7 +25,7 @@ func TestMacroEngine(t *testing.T) {
 			sql, err := engine.Interpolate("select min($__time(time_column))")
 			So(err, ShouldBeNil)
 
-			So(sql, ShouldEqual, "select min(UNIX_TIMESTAMP(time_column)) as time_sec)")
+			So(sql, ShouldEqual, "select min(UNIX_TIMESTAMP(time_column) as time_sec)")
 		})
 
 		Convey("interpolate __timeFilter function", func() {