diff --git a/builtin/providers/aws/import_aws_sqs_queue_test.go b/builtin/providers/aws/import_aws_sqs_queue_test.go index 45787eb6b..d3e9028d5 100644 --- a/builtin/providers/aws/import_aws_sqs_queue_test.go +++ b/builtin/providers/aws/import_aws_sqs_queue_test.go @@ -10,7 +10,7 @@ import ( ) func TestAccAWSSQSQueue_importBasic(t *testing.T) { - resourceName := "aws_sqs_queue.queue-with-defaults" + resourceName := "aws_sqs_queue.queue" queueName := fmt.Sprintf("sqs-queue-%s", acctest.RandString(5)) resource.Test(t, resource.TestCase{ @@ -26,9 +26,6 @@ func TestAccAWSSQSQueue_importBasic(t *testing.T) { ResourceName: resourceName, ImportState: true, ImportStateVerify: true, - //The name is never returned after the initial create of the queue. - //It is part of the URL and can be split down if needed - //ImportStateVerifyIgnore: []string{"name"}, }, }, })