Skip to content

Commit

Permalink
don't print dsn in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shueybubbles committed Oct 1, 2021
1 parent afd1204 commit fe11108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azuread/azuread_test.go
Expand Up @@ -53,10 +53,10 @@ func testConnParams(t testing.TB) *azureFedAuthConfig {
}
config, err := parse(dsn)
if err != nil {
t.Skip("error parsing connection string " + dsn)
t.Skip("error parsing connection string ")
}
if config.fedAuthLibrary == mssql.FedAuthLibraryReserved {
t.Skip("Skipping azure test due to missing fedauth parameter " + dsn)
t.Skip("Skipping azure test due to missing fedauth parameter ")
}
config.mssqlConfig.LogFlags = logFlags
return config
Expand Down

0 comments on commit fe11108

Please sign in to comment.