Skip to content

Commit

Permalink
r/storage_blob: ignoring the source_uri field
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Sep 1, 2019
1 parent f894b02 commit 570562b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions azurerm/resource_arm_storage_blob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func TestAccAzureRMStorageBlob_blockFromPublicBlob(t *testing.T) {
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "type"},
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "source_uri", "type"},
},
},
})
Expand All @@ -207,7 +207,7 @@ func TestAccAzureRMStorageBlob_blockFromPublicFile(t *testing.T) {
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "type"},
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "source_uri", "type"},
},
},
})
Expand All @@ -234,7 +234,7 @@ func TestAccAzureRMStorageBlob_blockFromExistingBlob(t *testing.T) {
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "type"},
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "source_uri", "type"},
},
},
})
Expand Down Expand Up @@ -391,7 +391,7 @@ func TestAccAzureRMStorageBlob_pageFromExistingBlob(t *testing.T) {
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "type"},
ImportStateVerifyIgnore: []string{"attempts", "parallelism", "size", "source_uri", "type"},
},
},
})
Expand Down

0 comments on commit 570562b

Please sign in to comment.