Skip to content

Commit

Permalink
lintersfix1
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pcyrek committed Dec 19, 2024
1 parent c3ef9e5 commit cf0a112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth_with_external_browser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ func TestClientStoreCredentials(t *testing.T) {
cfg.ClientStoreTemporaryCredential = 1
db := getDbHandlerFromConfig(t, cfg)
conn, err := db.Conn(context.Background())
defer conn.Close()
assertNilE(t, err, fmt.Sprintf("Failed to connect to Snowflake. err: %v", err))
defer conn.Close()
rows, err := conn.QueryContext(context.Background(), "SELECT 1")
rows.Close()
assertNilE(t, err, fmt.Sprintf("Failed to run a query. err: %v", err))
rows.Close()
})

t.Run("Verify validation of IDToken if option disabled", func(t *testing.T) {
Expand Down

0 comments on commit cf0a112

Please sign in to comment.