Skip to content

Commit

Permalink
acc_tests: make easylink tests not parallel as they use same resources
Browse files Browse the repository at this point in the history
  • Loading branch information
hod-alpert committed Nov 20, 2022
1 parent 1a2e8d7 commit dade4e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/provider/acc_tests/easylink_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ data "pfptmeta_easylink" "easylink" {
)

func TestAccMetaEasylink(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: providerFactories,
CheckDestroy: validateResourceDestroyed("easylink", "v1/easylinks"),
Expand Down Expand Up @@ -173,7 +173,7 @@ func TestAccMetaEasylink(t *testing.T) {
}

func TestAccMetaRdpEasylink(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: providerFactories,
CheckDestroy: validateResourceDestroyed("easylink", "v1/easylinks"),
Expand Down Expand Up @@ -211,7 +211,7 @@ func TestAccMetaRdpEasylink(t *testing.T) {
}

func TestAccNativeAndRedirectEasylink(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccReleasePreCheck(t) },
ProviderFactories: providerFactories,
CheckDestroy: validateResourceDestroyed("easylink", "v1/easylinks"),
Expand Down Expand Up @@ -270,7 +270,7 @@ func TestAccNativeAndRedirectEasylink(t *testing.T) {
}

func TestAccMDataSourceEasylink(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: providerFactories,
CheckDestroy: validateResourceDestroyed("easylink", "v1/easylinks"),
Expand Down

0 comments on commit dade4e6

Please sign in to comment.