Skip to content

Commit

Permalink
tests/resource/aws_iam_group_policy: Ignore name_prefix during import…
Browse files Browse the repository at this point in the history
… testing

Reference: #9217 (review)

```
--- PASS: TestAccAWSIAMGroupPolicy_namePrefix (16.04s)
```
  • Loading branch information
bflad committed Jul 5, 2019
1 parent a834688 commit 5b16726
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions aws/resource_aws_iam_group_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,10 @@ func TestAccAWSIAMGroupPolicy_namePrefix(t *testing.T) {
),
},
{
ResourceName: "aws_iam_group_policy.test",
ImportState: true,
ImportStateVerify: true,
ResourceName: "aws_iam_group_policy.test",
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"name_prefix"},
},
},
})
Expand Down

0 comments on commit 5b16726

Please sign in to comment.