summaryrefslogtreecommitdiff
path: root/static_pool_test.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-07 15:39:24 +0300
committerWolfy-J <[email protected]>2018-06-07 15:39:24 +0300
commit06e3569fabba6f2e36b5aac4df81484526003a9f (patch)
tree4b130de22bca32de46af3d6ec33577aaa6bdb6e0 /static_pool_test.go
parent996f00425f1eaf681a840a0dce8ab53b422e1116 (diff)
go fmt
Diffstat (limited to 'static_pool_test.go')
-rw-r--r--static_pool_test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/static_pool_test.go b/static_pool_test.go
index 58e208d5..97872609 100644
--- a/static_pool_test.go
+++ b/static_pool_test.go
@@ -2,13 +2,13 @@ package roadrunner
import (
"github.com/stretchr/testify/assert"
+ "log"
"os/exec"
"runtime"
- "testing"
- "time"
"strconv"
- "log"
"sync"
+ "testing"
+ "time"
)
var cfg = Config{
@@ -199,7 +199,6 @@ func Test_StaticPool_Broken_FromOutside(t *testing.T) {
}
}
-
func Test_StaticPool_AllocateTimeout(t *testing.T) {
p, err := NewPool(
func() *exec.Cmd { return exec.Command("php", "php-src/tests/client.php", "delay", "pipes") },