Skip to content

Commit 979586f

Browse files
committed
private/azure: Don't reuse account names in tests
1 parent ad897b9 commit 979586f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builtin/providers/azure/resource_azure_storage_service_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestAccAzureStorageService(t *testing.T) {
2020
Config: testAccAzureStorageServiceConfig,
2121
Check: resource.ComposeTestCheckFunc(
2222
testAccAzureStorageServiceExists(name),
23-
resource.TestCheckResourceAttr(name, "name", "tftesting"),
23+
resource.TestCheckResourceAttr(name, "name", "tftesting_dis"),
2424
resource.TestCheckResourceAttr(name, "location", "West US"),
2525
resource.TestCheckResourceAttr(name, "description", "very descriptive"),
2626
resource.TestCheckResourceAttr(name, "account_type", "Standard_LRS"),
@@ -70,7 +70,7 @@ func testAccAzureStorageServiceDestroyed(s *terraform.State) error {
7070
var testAccAzureStorageServiceConfig = `
7171
resource "azure_storage_service" "foo" {
7272
# NOTE: storage service names constrained to lowercase letters only.
73-
name = "tftesting"
73+
name = "tftesting_dis"
7474
location = "West US"
7575
description = "very descriptive"
7676
account_type = "Standard_LRS"

0 commit comments

Comments
 (0)