From 24d15820c16061057d962b5a6976c42fd5b588e3 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Fri, 20 Nov 2015 10:51:06 -0600 Subject: [PATCH] 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. --- builtin/providers/heroku/resource_heroku_cert_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/heroku/resource_heroku_cert_test.go b/builtin/providers/heroku/resource_heroku_cert_test.go index 4182ab575..1a2c7879b 100644 --- a/builtin/providers/heroku/resource_heroku_cert_test.go +++ b/builtin/providers/heroku/resource_heroku_cert_test.go @@ -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")}" }