Skip to content

Commit

Permalink
NO-SNOW Enable client configuration tests (#1225)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pfus authored Oct 23, 2024
1 parent 251a6cd commit b299730
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connection_configuration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func TestTokenFilePermission(t *testing.T) {
}
}

func TestloadConnectionConfig_Default(t *testing.T) {
func TestLoadConnectionConfigForStandardAuth(t *testing.T) {
err := os.Chmod("./test_data/connections.toml", 0600)
assertNilF(t, err, "The error occurred because you cannot change the file permission")

Expand All @@ -75,7 +75,7 @@ func TestloadConnectionConfig_Default(t *testing.T) {
assertEqualF(t, cfg.Port, 300)
}

func TestloadConnectionConfig_OAuth(t *testing.T) {
func TestLoadConnectionConfigForOAuth(t *testing.T) {
err := os.Chmod("./test_data/connections.toml", 0600)
assertNilF(t, err, "The error occurred because you cannot change the file permission")

Expand Down

0 comments on commit b299730

Please sign in to comment.