From 725032a9027d69d85cf0b7017ced026e96ac79ce Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Fri, 11 Dec 2020 09:55:12 -0500 Subject: [PATCH] tests/resource/aws_instance: Correct 'TestAccAWSInstance_EbsRootDevice_ModifyType'. (#16702) Acceptance test output: $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSInstance_EbsRootDevice_ModifyType' ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSInstance_EbsRootDevice_ModifyType -timeout 120m === RUN TestAccAWSInstance_EbsRootDevice_ModifyType === PAUSE TestAccAWSInstance_EbsRootDevice_ModifyType === CONT TestAccAWSInstance_EbsRootDevice_ModifyType --- PASS: TestAccAWSInstance_EbsRootDevice_ModifyType (126.02s) PASS ok github.com/terraform-providers/terraform-provider-aws/aws 126.110s --- aws/resource_aws_instance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/resource_aws_instance_test.go b/aws/resource_aws_instance_test.go index e50b8a14c3c..2132b71a968 100644 --- a/aws/resource_aws_instance_test.go +++ b/aws/resource_aws_instance_test.go @@ -1540,7 +1540,7 @@ func TestAccAWSInstance_EbsRootDevice_ModifyType(t *testing.T) { deleteOnTermination := "true" originalType := "gp2" - updatedType := "io1" + updatedType := "standard" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) },