From f9e86a52cff5825ccd93f5007b136cd1302f34a7 Mon Sep 17 00:00:00 2001 From: stack72 Date: Tue, 16 Aug 2016 08:40:14 +0100 Subject: [PATCH] provider/aws: Change paginated test to use the correct configuration block --- .../providers/aws/resource_aws_iam_policy_attachment_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_iam_policy_attachment_test.go b/builtin/providers/aws/resource_aws_iam_policy_attachment_test.go index 856f5c642..0d9266911 100644 --- a/builtin/providers/aws/resource_aws_iam_policy_attachment_test.go +++ b/builtin/providers/aws/resource_aws_iam_policy_attachment_test.go @@ -45,9 +45,9 @@ func TestAccAWSPolicyAttachment_paginatedEntities(t *testing.T) { CheckDestroy: testAccCheckAWSPolicyAttachmentDestroy, Steps: []resource.TestStep{ resource.TestStep{ - Config: testAccAWSPolicyAttachConfig, + Config: testAccAWSPolicyPaginatedAttachConfig, Check: resource.ComposeTestCheckFunc( - testAccCheckAWSPolicyAttachmentExists("aws_iam_policy_attachment.test-attach", 101, &out), + testAccCheckAWSPolicyAttachmentExists("aws_iam_policy_attachment.test-paginated-attach", 101, &out), ), }, },