Skip to content

Commit 1c3c6f9

Browse files
committed
small change
1 parent 7711f1a commit 1c3c6f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tfe/resource_tfe_project_policy_set_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ func testAccCheckTFEProjectPolicySetExists(n string) resource.TestCheckFunc {
122122
Include: []tfe.PolicySetIncludeOpt{tfe.PolicySetProjects},
123123
})
124124
if err != nil {
125-
return fmt.Errorf("error reading polciy set %s: %w", policySetID, err)
125+
return fmt.Errorf("error reading policy set %s: %w", policySetID, err)
126126
}
127127
for _, project := range policySet.Projects {
128128
if project.ID == projectID {
@@ -148,7 +148,7 @@ func testAccCheckTFEProjectPolicySetDestroy(s *terraform.State) error {
148148

149149
_, err := config.Client.PolicySets.Read(ctx, rs.Primary.ID)
150150
if err == nil {
151-
return fmt.Errorf("policy Set %s still exists", rs.Primary.ID)
151+
return fmt.Errorf("policy set %s still exists", rs.Primary.ID)
152152
}
153153
}
154154

0 commit comments

Comments
 (0)