Skip to content

Commit

Permalink
fixed DSN test
Browse files Browse the repository at this point in the history
  • Loading branch information
smtakeda committed Jan 8, 2018
1 parent 5447ff5 commit cdcc72f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dsn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestParseDSN(t *testing.T) {
config: &Config{
Account: "account", User: "user", Password: "pass",
Protocol: "https", Host: "account.snowflakecomputing.com", Port: 443,
Database: "db", Schema: "public",
Database: "db",
},
err: nil,
},
Expand Down Expand Up @@ -163,7 +163,7 @@ func TestParseDSN(t *testing.T) {
{
dsn: "u:p@/db?account=ac",
config: &Config{
Account: "ac", User: "u", Password: "p", Database: "db", Schema: "public",
Account: "ac", User: "u", Password: "p", Database: "db",
Protocol: "https", Host: "ac.snowflakecomputing.com", Port: 443,
},
err: nil,
Expand Down

0 comments on commit cdcc72f

Please sign in to comment.