diff options
author | Valery Piashchynski <[email protected]> | 2020-10-16 12:43:02 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-10-16 12:43:02 +0300 |
commit | 4fd2e882674e9e8b591ec182155b4ba90223af21 (patch) | |
tree | cd9fef0a080f5bc345b5d44f7194e0d91b1d7609 /util | |
parent | a407be25f068a5c0a20a4cf96ddfaf4ccd3af739 (diff) |
Fix old deps in testsv2.0.0-alpha5
Diffstat (limited to 'util')
-rw-r--r-- | util/network.go | 3 | ||||
-rw-r--r-- | util/network_test.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/util/network.go b/util/network.go index d858cb0a..f35d842b 100644 --- a/util/network.go +++ b/util/network.go @@ -5,11 +5,12 @@ package util import ( "errors" "fmt" - "github.com/valyala/tcplisten" "net" "os" "strings" "syscall" + + "github.com/valyala/tcplisten" ) // CreateListener crates socket listener based on DSN definition. diff --git a/util/network_test.go b/util/network_test.go index 09157ec0..1dc16e94 100644 --- a/util/network_test.go +++ b/util/network_test.go @@ -3,8 +3,9 @@ package util import ( - "github.com/stretchr/testify/assert" "testing" + + "github.com/stretchr/testify/assert" ) func TestCreateListener(t *testing.T) { |