Skip to content

Commit

Permalink
test: logic app http trigger allows params in url
Browse files Browse the repository at this point in the history
  • Loading branch information
alastairtree authored Sep 13, 2018
1 parent 417c0da commit 3485c1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azurerm/resource_arm_logic_app_trigger_http_request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestAccAzureRMLogicAppTriggerHttpRequest_relativePath(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testCheckAzureRMLogicAppTriggerExists(resourceName),
resource.TestCheckResourceAttr(resourceName, "method", "POST"),
resource.TestCheckResourceAttr(resourceName, "relative_path", "hello_there"),
resource.TestCheckResourceAttr(resourceName, "relative_path", "customers/{id}"),
),
},
},
Expand Down Expand Up @@ -178,7 +178,7 @@ resource "azurerm_logic_app_trigger_http_request" "test" {
logic_app_id = "${azurerm_logic_app_workflow.test.id}"
schema = "{}"
method = "POST"
relative_path = "hello_there"
relative_path = "customers/{id}"
}
`, template)
}
Expand Down

0 comments on commit 3485c1e

Please sign in to comment.