From 0b1044b46ff197e296be21ddf101978e791d7614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 28 Feb 2015 11:38:44 +0100 Subject: [PATCH] Fixed plugins go test --- pkg/plugins/plugins_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugins/plugins_test.go b/pkg/plugins/plugins_test.go index 5d3e10f17b4..d6a138ac76e 100644 --- a/pkg/plugins/plugins_test.go +++ b/pkg/plugins/plugins_test.go @@ -14,6 +14,6 @@ func TestPluginScans(t *testing.T) { err := scan(path) So(err, ShouldBeNil) - So(len(DataSources), ShouldEqual, 1) + So(len(DataSources), ShouldBeGreaterThan, 1) }) }