Skip to content

Commit

Permalink
r/storage: fixing broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Feb 13, 2020
1 parent f0c23ee commit b6d0fb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ resource "azurerm_storage_blob" "source" {
storage_account_name = "${azurerm_storage_account.test.name}"
storage_container_name = "${azurerm_storage_container.test.name}"
type = "Block"
source_uri = "http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso"
source_uri = "http://old-releases.ubuntu.com/releases/bionic/ubuntu-18.04-desktop-amd64.iso"
content_type = "application/x-iso9660-image"
}
Expand Down Expand Up @@ -902,7 +902,7 @@ resource "azurerm_storage_blob" "test" {
storage_account_name = "${azurerm_storage_account.test.name}"
storage_container_name = "${azurerm_storage_container.test.name}"
type = "Block"
source_uri = "http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso"
source_uri = "http://old-releases.ubuntu.com/releases/bionic/ubuntu-18.04-desktop-amd64.iso"
content_type = "application/x-iso9660-image"
}
`, template)
Expand All @@ -918,7 +918,7 @@ resource "azurerm_storage_blob" "source" {
storage_account_name = "${azurerm_storage_account.test.name}"
storage_container_name = "${azurerm_storage_container.test.name}"
type = "Block"
source_uri = "http://releases.ubuntu.com/18.04.3/ubuntu-18.04.3-desktop-amd64.iso"
source_uri = "http://old-releases.ubuntu.com/releases/bionic/ubuntu-18.04-desktop-amd64.iso"
content_type = "application/x-iso9660-image"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func TestAccAzureRMTableEntity_requiresImport(t *testing.T) {
t.Skip("Skipping since resources aren't required to be imported")
return
}
data := acceptance.BuildTestData(t, "azurerm_storage_table_entity", "import")
data := acceptance.BuildTestData(t, "azurerm_storage_table_entity", "test")

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acceptance.PreCheck(t) },
Expand Down

0 comments on commit b6d0fb8

Please sign in to comment.