From cf43663e85be35c0343cfde87e4fb9672614b28d Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Fri, 6 Sep 2019 14:01:47 -0700 Subject: [PATCH] command/e2etest: Fix TestInitProviders The canonical location of the "template" provider is now in the hashicorp namespace rather than the terraform-providers namespace, so the output has changed to reflect that. --- command/e2etest/init_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/e2etest/init_test.go b/command/e2etest/init_test.go index 800dc4f0e..918d19d46 100644 --- a/command/e2etest/init_test.go +++ b/command/e2etest/init_test.go @@ -39,7 +39,7 @@ func TestInitProviders(t *testing.T) { t.Errorf("success message is missing from output:\n%s", stdout) } - if !strings.Contains(stdout, "- Downloading plugin for provider \"template\" (terraform-providers/template)") { + if !strings.Contains(stdout, "- Downloading plugin for provider \"template\" (hashicorp/template)") { t.Errorf("provider download message is missing from output:\n%s", stdout) t.Logf("(this can happen if you have a copy of the plugin in one of the global plugin search dirs)") }