Skip to content

Commit 828d72f

Browse files
committed
fix imports
1 parent 0f09a6d commit 828d72f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

batch_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
package gocql
2929

3030
import (
31-
"github.com/stretchr/testify/require"
3231
"testing"
3332
"time"
33+
34+
"github.com/stretchr/testify/require"
3435
)
3536

3637
func TestBatch_Errors(t *testing.T) {

lz4/lz4_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@
2828
package lz4
2929

3030
import (
31-
"github.com/pierrec/lz4/v4"
3231
"testing"
3332

33+
"github.com/pierrec/lz4/v4"
34+
3435
"github.com/stretchr/testify/require"
3536
)
3637

session.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@ import (
3030
"encoding/binary"
3131
"errors"
3232
"fmt"
33-
"github.com/gocql/gocql/internal/lru"
3433
"io"
3534
"net"
3635
"strings"
3736
"sync"
3837
"sync/atomic"
3938
"time"
4039
"unicode"
40+
41+
"github.com/gocql/gocql/internal/lru"
4142
)
4243

4344
// Session is the interface used by users to interact with the database.

stress_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ package gocql
2929

3030
import (
3131
"sync/atomic"
32-
3332
"testing"
3433
)
3534

0 commit comments

Comments
 (0)