diff options
author | Wolfy-J <[email protected]> | 2018-10-01 19:05:30 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-10-01 19:05:30 +0300 |
commit | ec7b916f2162110430122b5bab0b718de9b4b5b0 (patch) | |
tree | ff9c79382013c95fbd8caa16add8809a4edf7d6f /worker_test.go | |
parent | a14a6cd6c2fa4fdcdb8b3343d6f3ef537c10b4e0 (diff) |
golint
Diffstat (limited to 'worker_test.go')
-rw-r--r-- | worker_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker_test.go b/worker_test.go index b3a3fc46..c357b6e0 100644 --- a/worker_test.go +++ b/worker_test.go @@ -132,7 +132,7 @@ func Test_Echo_Slow(t *testing.T) { func Test_Broken(t *testing.T) { cmd := exec.Command("php", "tests/client.php", "broken", "pipes") - w, err := NewPipeFactory().SpawnWorker(cmd) + w, _ := NewPipeFactory().SpawnWorker(cmd) go func() { err := w.Wait() assert.Error(t, err) |