瀏覽代碼

dont test exists in the test... it will fail if not found

ryan 6 年之前
父節點
當前提交
bd811b4a95
共有 1 個文件被更改,包括 2 次插入4 次删除
  1. 2 4
      pkg/tsdb/testdata/scenarios_test.go

+ 2 - 4
pkg/tsdb/testdata/scenarios_test.go

@@ -11,8 +11,7 @@ import (
 
 func TestTestdataScenarios(t *testing.T) {
 	Convey("random walk ", t, func() {
-		scenario, exist := ScenarioRegistry["random_walk"]
-		So(exist, ShouldBeTrue)
+		scenario, _ := ScenarioRegistry["random_walk"]
 
 		Convey("Should start at the requested value", func() {
 			req := &tsdb.TsdbQuery{
@@ -33,8 +32,7 @@ func TestTestdataScenarios(t *testing.T) {
 	})
 
 	Convey("random walk table", t, func() {
-		scenario, exist := ScenarioRegistry["random_walk_table"]
-		So(exist, ShouldBeTrue)
+		scenario, _ := ScenarioRegistry["random_walk_table"]
 
 		Convey("Should return a table that looks like value/min/max", func() {
 			req := &tsdb.TsdbQuery{