Skip to content

Commit

Permalink
d/aws_apigatewayv2_apis: Don't run acceptance tests in parallel.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Jun 24, 2020
1 parent 1cd5ec5 commit fa3fb84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aws/data_source_aws_apigatewayv2_apis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestAccAWSAPIGatewayV2ApisDataSource_Name(t *testing.T) {
rName1 := acctest.RandomWithPrefix("tf-acc-test")
rName2 := acctest.RandomWithPrefix("tf-acc-test")

resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: nil,
Expand All @@ -36,7 +36,7 @@ func TestAccAWSAPIGatewayV2ApisDataSource_ProtocolType(t *testing.T) {
rName1 := acctest.RandomWithPrefix("tf-acc-test")
rName2 := acctest.RandomWithPrefix("tf-acc-test")

resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: nil,
Expand All @@ -59,7 +59,7 @@ func TestAccAWSAPIGatewayV2ApisDataSource_Tags(t *testing.T) {
rName1 := acctest.RandomWithPrefix("tf-acc-test")
rName2 := acctest.RandomWithPrefix("tf-acc-test")

resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: nil,
Expand Down

0 comments on commit fa3fb84

Please sign in to comment.