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:
parent
93583936e1
commit
cf43663e85
|
@ -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)")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue