We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1424bef commit f19c224Copy full SHA for f19c224
test/e2e/shared/aws.go
@@ -454,8 +454,7 @@ func deleteResourcesInCloudFormation(prov client.ConfigProvider, t *cfn_bootstra
454
tayp := val.AWSCloudFormationType()
455
if tayp == configservice.ResourceTypeAwsIamRole {
456
role := val.(*cfn_iam.Role)
457
- _, err := iamSvc.DeleteRole(&iam.DeleteRoleInput{RoleName: aws.String(role.RoleName)})
458
- Expect(err).NotTo(HaveOccurred())
+ _, _ = iamSvc.DeleteRole(&iam.DeleteRoleInput{RoleName: aws.String(role.RoleName)})
459
}
460
if val.AWSCloudFormationType() == "AWS::IAM::InstanceProfile" {
461
profile := val.(*cfn_iam.InstanceProfile)
0 commit comments