Skip to content

Commit

Permalink
fix: DiffSuppressFunc
Browse files Browse the repository at this point in the history
  • Loading branch information
csquire committed Dec 12, 2024
1 parent dcb5c9b commit 7a60217
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions pkg/sdkv2/resources/environment_acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,7 @@ func TestAccDbtCloudEnvironmentResourceNoConnection(t *testing.T) {
}

func testAccDbtCloudEnvironmentResourceNoConnectionBasicConfig(
projectName string,
environmentName string,
dbtVersion string,
projectName, environmentName, dbtVersion string,
) string {
return fmt.Sprintf(`
resource "dbtcloud_project" "test_project" {
Expand Down Expand Up @@ -349,9 +347,7 @@ func TestAccDbtCloudEnvironmentResourceConnection(t *testing.T) {
}

func testAccDbtCloudEnvironmentResourceConnectionBasicConfig(
projectName string,
environmentName string,
dbtVersion string,
projectName, environmentName, dbtVersion string,
) string {
return fmt.Sprintf(`
resource "dbtcloud_project" "test_project" {
Expand Down Expand Up @@ -383,11 +379,7 @@ resource "dbtcloud_environment" "test_env" {
}

func testAccDbtCloudEnvironmentResourceConnectionModifiedConfig(
projectName string,
environmentName string,
customBranch string,
useCustomBranch string,
dbtVersion string,
projectName, environmentName, customBranch, useCustomBranch, dbtVersion string,
) string {
return fmt.Sprintf(`
resource "dbtcloud_project" "test_project" {
Expand Down

0 comments on commit 7a60217

Please sign in to comment.