provider/aws: Change the resource name expected as part of sqs queue import test
This commit is contained in:
parent
3a1f2e6fe9
commit
4e1d54ad51
|
@ -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"},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue