From b526964584d213074de7c5573a3373a58699c181 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sun, 13 May 2018 22:24:04 +0200 Subject: [PATCH] Fix missing plugin name in message This message was missing the name of the plugin, resulting in plugin_test.go:92: timeout hit after 30s: plugin %!q(MISSING) exists On failing tests. Signed-off-by: Sebastiaan van Stijn --- internal/test/daemon/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/test/daemon/plugin.go b/internal/test/daemon/plugin.go index fad9727161..9a7cc345ea 100644 --- a/internal/test/daemon/plugin.go +++ b/internal/test/daemon/plugin.go @@ -38,7 +38,7 @@ func (d *Daemon) PluginIsNotPresent(name string) func(poll.LogT) poll.Result { if err != nil { return poll.Error(err) } - return poll.Continue("plugin %q exists") + return poll.Continue("plugin %q exists", name) }) }