diff options
Diffstat (limited to 'socket_factory_test.go')
-rwxr-xr-x | socket_factory_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/socket_factory_test.go b/socket_factory_test.go index 6ab87872..f7b2e69a 100755 --- a/socket_factory_test.go +++ b/socket_factory_test.go @@ -116,7 +116,7 @@ func Test_Tcp_Failboot(t *testing.T) { cmd := exec.Command("php", "tests/failboot.php") - w, err2 := NewSocketServer(ls, time.Minute).SpawnWorkerWithContext(ctx, cmd) + w, err2 := NewSocketServer(ls, time.Second*5).SpawnWorkerWithContext(ctx, cmd) assert.Nil(t, w) assert.Error(t, err2) assert.Contains(t, err2.Error(), "failboot") |