summaryrefslogtreecommitdiff
path: root/service/http
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-23 17:55:52 +0300
committerWolfy-J <[email protected]>2018-06-23 17:55:52 +0300
commit918e7de39e16eb293567427f2e8e8c3035690163 (patch)
treea50fad82b2c8a94a0466f8ab2fa2e2adf5f502e5 /service/http
parent8d234dcb0dc8a8cf1badcd979833b468279f46de (diff)
one way destruction of the pool
Diffstat (limited to 'service/http')
-rw-r--r--service/http/rpc_test.go6
-rw-r--r--service/http/service_test.go2
2 files changed, 4 insertions, 4 deletions
diff --git a/service/http/rpc_test.go b/service/http/rpc_test.go
index 4edb7058..c392b060 100644
--- a/service/http/rpc_test.go
+++ b/service/http/rpc_test.go
@@ -1,17 +1,17 @@
package http
import (
+ "encoding/json"
"github.com/sirupsen/logrus"
"github.com/sirupsen/logrus/hooks/test"
"github.com/spiral/roadrunner/service"
"github.com/spiral/roadrunner/service/rpc"
"github.com/stretchr/testify/assert"
+ "os"
+ "runtime"
"strconv"
"testing"
"time"
- "runtime"
- "os"
- "encoding/json"
)
func Test_RPC(t *testing.T) {
diff --git a/service/http/service_test.go b/service/http/service_test.go
index 10a20662..55fa660b 100644
--- a/service/http/service_test.go
+++ b/service/http/service_test.go
@@ -397,4 +397,4 @@ func tmpDir() string {
r, _ := json.Marshal(p)
return string(r)
-} \ No newline at end of file
+}