diff options
Diffstat (limited to 'service/health/service_test.go')
-rw-r--r-- | service/health/service_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/service/health/service_test.go b/service/health/service_test.go index 3e86b0bd..7a3b8186 100644 --- a/service/health/service_test.go +++ b/service/health/service_test.go @@ -73,7 +73,6 @@ func TestService_Serve(t *testing.T) { _, res, err := get("http://localhost:2116/") assert.NoError(t, err) assert.Equal(t, http.StatusOK, res.StatusCode) - } func TestService_Serve_DeadWorker(t *testing.T) { @@ -91,7 +90,7 @@ func TestService_Serve_DeadWorker(t *testing.T) { httpCfg: `{ "address": "localhost:2115", "workers":{ - "command": "php ../../tests/http/client.php echo pipes", + "command": "php ../../tests/http/slow-client.php echo pipes 1000", "pool": {"numWorkers": 1} } }`, |