From d4b8686edd8b5db24e6596d283c98868a1274b21 Mon Sep 17 00:00:00 2001 From: Jan Was Date: Sun, 12 Jun 2022 17:46:19 +0200 Subject: [PATCH] Format sources with goimports --- trino/trino_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/trino/trino_test.go b/trino/trino_test.go index b02711c..b962630 100644 --- a/trino/trino_test.go +++ b/trino/trino_test.go @@ -19,12 +19,13 @@ import ( "database/sql" "encoding/json" "fmt" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" "net/http" "net/http/httptest" "testing" "time" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) func TestConfig(t *testing.T) { @@ -133,7 +134,7 @@ func TestConnErrorDSN(t *testing.T) { require.NoError(t, err) _, err = db.Query("SELECT 1") - assert.Errorf(t, err,"test dsn is supposed to fail: %s", tc.DSN) + assert.Errorf(t, err, "test dsn is supposed to fail: %s", tc.DSN) if err == nil { require.NoError(t, db.Close())