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.
This commit is contained in:
Martin Atkins 2019-09-06 14:01:47 -07:00
parent 93583936e1
commit cf43663e85
1 changed files with 1 additions and 1 deletions

View File

@ -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)")
}