update context tests to expect provider validation to be skipped
This commit is contained in:
parent
16a08c6d8b
commit
07dbe7bd5f
|
@ -588,12 +588,12 @@ func TestContext2Validate_providerConfig_badEmpty(t *testing.T) {
|
||||||
})
|
})
|
||||||
|
|
||||||
p.PrepareProviderConfigResponse = providers.PrepareProviderConfigResponse{
|
p.PrepareProviderConfigResponse = providers.PrepareProviderConfigResponse{
|
||||||
Diagnostics: tfdiags.Diagnostics{}.Append(fmt.Errorf("bad")),
|
Diagnostics: tfdiags.Diagnostics{}.Append(fmt.Errorf("should not be called")),
|
||||||
}
|
}
|
||||||
|
|
||||||
diags := c.Validate()
|
diags := c.Validate()
|
||||||
if !diags.HasErrors() {
|
if diags.HasErrors() {
|
||||||
t.Fatalf("succeeded; want error")
|
t.Fatalf("unexpected error: %v", diags)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue