private/azure: Don't reuse account names in tests

This commit is contained in:
James Nugent 2016-01-07 16:23:20 -08:00
parent ad897b9ea2
commit 979586faea
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ func TestAccAzureStorageService(t *testing.T) {
Config: testAccAzureStorageServiceConfig,
Check: resource.ComposeTestCheckFunc(
testAccAzureStorageServiceExists(name),
resource.TestCheckResourceAttr(name, "name", "tftesting"),
resource.TestCheckResourceAttr(name, "name", "tftesting_dis"),
resource.TestCheckResourceAttr(name, "location", "West US"),
resource.TestCheckResourceAttr(name, "description", "very descriptive"),
resource.TestCheckResourceAttr(name, "account_type", "Standard_LRS"),
@ -70,7 +70,7 @@ func testAccAzureStorageServiceDestroyed(s *terraform.State) error {
var testAccAzureStorageServiceConfig = `
resource "azure_storage_service" "foo" {
# NOTE: storage service names constrained to lowercase letters only.
name = "tftesting"
name = "tftesting_dis"
location = "West US"
description = "very descriptive"
account_type = "Standard_LRS"