Fixed message: testutil/server.go:317: missing ... in args forwarded to print-like function

This commit is contained in:
Pierre Souchay 2018-07-10 11:04:25 +02:00
parent 455d8fbea6
commit 22bacabf7e
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ type failer struct {
failed bool
}
func (f *failer) Log(args ...interface{}) { fmt.Println(args) }
func (f *failer) Log(args ...interface{}) { fmt.Println(args...) }
func (f *failer) FailNow() { f.failed = true }
// waitForAPI waits for only the agent HTTP endpoint to start