Skip to content

Commit ca22086

Browse files
committed
Run golangci-lint
1 parent d8a4588 commit ca22086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/authentication_handler_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
_ "github.com/go-sql-driver/mysql"
1110
"github.com/go-mysql-org/go-mysql/mysql"
11+
_ "github.com/go-sql-driver/mysql"
1212
"github.com/pingcap/errors"
1313
"github.com/stretchr/testify/require"
1414
)
@@ -64,7 +64,7 @@ func TestOnAuthSuccessCalled(t *testing.T) {
6464
func TestOnAuthSuccessCanReject(t *testing.T) {
6565
handler := &hookTrackingAuthenticationHandler{
6666
InMemoryAuthenticationHandler: NewInMemoryAuthenticationHandler(mysql.AUTH_NATIVE_PASSWORD),
67-
rejectOnSuccess: true,
67+
rejectOnSuccess: true,
6868
}
6969
require.NoError(t, handler.AddUser("testuser", "testpass"))
7070

0 commit comments

Comments
 (0)