Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
csquire committed Dec 11, 2024
1 parent 259ad6f commit bef3dcb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ func environments(
project_id = dbtcloud_project.test_project2.id
depends_on = [dbtcloud_environment.test_environment1, dbtcloud_environment.test_environment2]
}
`, randomProjectName1,
`,
randomProjectName1,
randomProjectName2,
randomEnvironmentName1,
acctest_config.AcceptanceTestConfig.DbtCloudVersion,
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdkv2/resources/databricks_credential.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ func resourceDatabricksCredentialUpdateGlobConn(
d.Get("catalog").(string),
)

for key, _ := range patchCredentialsDetails.Fields {
for key := range patchCredentialsDetails.Fields {
if d.Get(key) == nil || !d.HasChange(key) {
delete(patchCredentialsDetails.Fields, key)
}
Expand Down

0 comments on commit bef3dcb

Please sign in to comment.