Skip to content

Commit 57a9a12

Browse files
committed
fix: Remove redundant tests that test provider but not the module
1 parent 062adf9 commit 57a9a12

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/github_team_test.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import (
77

88
"github.com/gruntwork-io/terratest/modules/random"
99
"github.com/gruntwork-io/terratest/modules/terraform"
10-
"gotest.tools/assert"
1110
)
1211

1312
var githubOrganization, githubToken string
@@ -48,11 +47,4 @@ func TestGithubTeam(t *testing.T) {
4847

4948
// This will run `terraform init` and `terraform apply` and fail the test if there are any errors
5049
terraform.InitAndApply(t, terraformOptions)
51-
52-
// Validate the names of the repositoriees
53-
assert.Equal(t, repositoryA, terraform.Output(t, terraformOptions, "first_repository_name"))
54-
assert.Equal(t, repositoryB, terraform.Output(t, terraformOptions, "second_repository_name"))
55-
56-
// Validate if the created teams name
57-
assert.Equal(t, teamName, terraform.Output(t, terraformOptions, "team_name"))
5850
}

0 commit comments

Comments
 (0)