provider/heroku: fix acc test

depends_on requires a list of strings. the old parser would silently
ignore this field, but the new one returned a syntax error.
This commit is contained in:
Paul Hinze 2015-11-20 10:51:06 -06:00
parent c637ca039c
commit 24d15820c1
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func TestAccHerokuCert_Basic(t *testing.T) {
resource "heroku_cert" "ssl_certificate" {
app = "${heroku_app.foobar.name}"
depends_on = "heroku_addon.ssl"
depends_on = ["heroku_addon.ssl"]
certificate_chain="${file("` + certificateChainFile + `")}"
private_key="${file("` + wd + `/test-fixtures/terraform.key")}"
}