diff options
author | Wolfy-J <[email protected]> | 2018-09-30 19:00:07 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-30 19:00:07 +0300 |
commit | 89829597d7da2af4d4a6bc394746b244a3e43a1c (patch) | |
tree | b1b8d4af813b5f6ea9cc57bc64807a77f8cc5753 /service/http/ssl_test.go | |
parent | c7b6b81c044305a3d65d1d53eb7f7bc172b37bf2 (diff) |
new go mod
Diffstat (limited to 'service/http/ssl_test.go')
-rw-r--r-- | service/http/ssl_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/service/http/ssl_test.go b/service/http/ssl_test.go index 5fcd19ce..63eb90b1 100644 --- a/service/http/ssl_test.go +++ b/service/http/ssl_test.go @@ -1,15 +1,15 @@ package http import ( - "testing" - "github.com/sirupsen/logrus/hooks/test" + "crypto/tls" "github.com/sirupsen/logrus" + "github.com/sirupsen/logrus/hooks/test" "github.com/spiral/roadrunner/service" "github.com/stretchr/testify/assert" - "time" - "net/http" "io/ioutil" - "crypto/tls" + "net/http" + "testing" + "time" ) var sslClient = &http.Client{ |