Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CDPCP-13451 - remove validation skip for skipOrgPolicyDecisions and verifyPermissions fields for credential E2E test(s) #197

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions resources/environments/resource_aws_credential_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ func TestAccAwsCredential_basic(t *testing.T) {
},
// ImportState testing
{
ImportState: true,
ImportStateVerify: true,
ResourceName: resourceName,
ImportStateVerifyIgnore: []string{"skip_org_policy_decisions", "verify_permissions"}, // this ignore has to be taken out once the CB-27933 got finished
ImportState: true,
ImportStateVerify: true,
ResourceName: resourceName,
},
// Delete testing automatically occurs in TestCase
},
Expand Down Expand Up @@ -103,10 +102,9 @@ func TestAccAwsCredential_withDescription(t *testing.T) {
},
// ImportState testing
{
ImportState: true,
ImportStateVerify: true,
ResourceName: resourceName,
ImportStateVerifyIgnore: []string{"skip_org_policy_decisions", "verify_permissions"}, // this ignore has to be taken out once the CB-27933 got finished
ImportState: true,
ImportStateVerify: true,
ResourceName: resourceName,
},
// Delete testing automatically occurs in TestCase
},
Expand Down
Loading