diff options
Diffstat (limited to 'static_pool_test.go')
-rw-r--r-- | static_pool_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static_pool_test.go b/static_pool_test.go index 1e4906a5..a78fcf11 100644 --- a/static_pool_test.go +++ b/static_pool_test.go @@ -252,7 +252,7 @@ func Test_StaticPool_Replace_Worker(t *testing.T) { var lastPID string lastPID = strconv.Itoa(*p.Workers()[0].Pid) - res, err := p.Exec(&Payload{Body: []byte("hello")}) + res, _ := p.Exec(&Payload{Body: []byte("hello")}) assert.Equal(t, lastPID, string(res.Body)) for i := 0; i < 10; i++ { @@ -287,7 +287,7 @@ func Test_StaticPool_Stop_Worker(t *testing.T) { var lastPID string lastPID = strconv.Itoa(*p.Workers()[0].Pid) - res, err := p.Exec(&Payload{Body: []byte("hello")}) + res, _ := p.Exec(&Payload{Body: []byte("hello")}) assert.Equal(t, lastPID, string(res.Body)) for i := 0; i < 10; i++ { |