engine: resources: Clean up test log message

This commit is contained in:
James Shubin
2019-09-09 07:27:33 -04:00
parent 28adc7e563
commit 43ff92bbe7

View File

@@ -378,7 +378,7 @@ func TestResources1(t *testing.T) {
doneChan := make(chan struct{}) doneChan := make(chan struct{})
debug := testing.Verbose() // set via the -test.v flag to `go test` debug := testing.Verbose() // set via the -test.v flag to `go test`
logf := func(format string, v ...interface{}) { logf := func(format string, v ...interface{}) {
t.Logf(fmt.Sprintf("test #%d: Res: ", index)+format, v...) t.Logf(fmt.Sprintf("test #%d: ", index)+format, v...)
} }
init := &engine.Init{ init := &engine.Init{
Running: func() { Running: func() {