Skip to content

Commit

Permalink
fix broken test param for remoteDebugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jackofallops committed May 7, 2020
1 parent fc209f9 commit a6362e4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -857,7 +857,7 @@ func TestAccAzureRMAppServiceSlot_remoteDebugging(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testCheckAzureRMAppServiceSlotExists(data.ResourceName),
resource.TestCheckResourceAttr(data.ResourceName, "site_config.0.remote_debugging_enabled", "true"),
resource.TestCheckResourceAttr(data.ResourceName, "site_config.0.remote_debugging_version", "VS2015"),
resource.TestCheckResourceAttr(data.ResourceName, "site_config.0.remote_debugging_version", "VS2019"),
),
},
},
Expand Down Expand Up @@ -3109,7 +3109,7 @@ resource "azurerm_app_service_slot" "test" {
site_config {
remote_debugging_enabled = true
remote_debugging_version = "VS2015"
remote_debugging_version = "VS2019"
}
tags = {
Expand Down

0 comments on commit a6362e4

Please sign in to comment.