Skip to content

Commit

Permalink
Fixup test destroy check
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartleeks committed Jul 8, 2020
1 parent 9e922a2 commit 1a63706
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_basic(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_basic(data),
Expand All @@ -38,7 +38,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_requiresImport(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_basic(data),
Expand All @@ -57,7 +57,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_withSimpleACL(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_withSimpleACL(data),
Expand All @@ -83,7 +83,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_withSimpleACLAndUpdate(t *testing.T)
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_withSimpleACL(data),
Expand All @@ -102,7 +102,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_withACLWithSpecificUserAndDefaults(t
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_withACLWithSpecificUserAndDefaults(data),
Expand All @@ -121,7 +121,7 @@ func TestAccAzureRMStorageDataLakeGen2Path_withOwner(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Providers: acceptance.SupportedProviders,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2FileSystemDestroy,
CheckDestroy: testCheckAzureRMStorageDataLakeGen2PathDestroy,
Steps: []resource.TestStep{
{
Config: testAccAzureRMStorageDataLakeGen2Path_withOwner(data),
Expand Down

0 comments on commit 1a63706

Please sign in to comment.