Skip to content

Commit e0d9c21

Browse files
committed
code health: fix all imports highlighted by the linter
1 parent 282ba27 commit e0d9c21

5 files changed

+8
-6
lines changed

example_custom_unpacking_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ package tarantool_test
22

33
import (
44
"fmt"
5-
"github.com/tarantool/go-tarantool"
6-
"gopkg.in/vmihailenco/msgpack.v2"
75
"log"
86
"time"
7+
8+
"github.com/tarantool/go-tarantool"
9+
"gopkg.in/vmihailenco/msgpack.v2"
910
)
1011

1112
type Tuple2 struct {

example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package tarantool_test
22

33
import (
44
"fmt"
5-
"github.com/tarantool/go-tarantool/test_helpers"
65
"time"
76

87
"github.com/tarantool/go-tarantool"
8+
"github.com/tarantool/go-tarantool/test_helpers"
99
)
1010

1111
type Tuple struct {

multi/example_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ package multi
22

33
import (
44
"fmt"
5-
"github.com/tarantool/go-tarantool"
65
"time"
6+
7+
"github.com/tarantool/go-tarantool"
78
)
89

910
func ExampleConnect() {

queue/example_msgpack_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ package queue_test
1010

1111
import (
1212
"fmt"
13+
"log"
1314
"time"
1415

1516
"github.com/tarantool/go-tarantool"
1617
"github.com/tarantool/go-tarantool/queue"
1718
"gopkg.in/vmihailenco/msgpack.v2"
18-
"log"
1919
)
2020

2121
type dummyData struct {

tarantool_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package tarantool_test
22

33
import (
44
"fmt"
5-
"github.com/stretchr/testify/assert"
65
"log"
76
"os"
87
"reflect"
@@ -11,6 +10,7 @@ import (
1110
"testing"
1211
"time"
1312

13+
"github.com/stretchr/testify/assert"
1414
. "github.com/tarantool/go-tarantool"
1515
"github.com/tarantool/go-tarantool/test_helpers"
1616
"gopkg.in/vmihailenco/msgpack.v2"

0 commit comments

Comments
 (0)