From 9e01b2f1a74ed0df63789565f2ae8237d8757f73 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Tue, 24 Jan 2017 17:11:26 +0300 Subject: [PATCH] Make go vet happy --- poolmgr/functionServiceCache_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poolmgr/functionServiceCache_test.go b/poolmgr/functionServiceCache_test.go index e5e5a4a8..1c71cd75 100644 --- a/poolmgr/functionServiceCache_test.go +++ b/poolmgr/functionServiceCache_test.go @@ -71,6 +71,6 @@ func TestFunctionServiceCache(t *testing.T) { _, err = fsc.GetByFunction(fsvc.function) if err == nil { fsc.Log() - log.Panicf("found fsvc while expecting empty cache", err) + log.Panicf("found fsvc while expecting empty cache: %v", err) } }