From b3e906268f0385389455a140d8f587ffd0354196 Mon Sep 17 00:00:00 2001 From: Jakub Al-Khalili Date: Wed, 9 Oct 2019 13:22:14 +0200 Subject: [PATCH] Fix plugin tests --- pkg/controller/jenkins/plugins/plugin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/jenkins/plugins/plugin_test.go b/pkg/controller/jenkins/plugins/plugin_test.go index 29593be9..4c0f95a7 100644 --- a/pkg/controller/jenkins/plugins/plugin_test.go +++ b/pkg/controller/jenkins/plugins/plugin_test.go @@ -115,6 +115,6 @@ func TestVerifyDependencies(t *testing.T) { }, } got := VerifyDependencies(basePlugins) - assert.Nil(got) + assert.Nil(t, got) }) }