Merge pull request #19127 from hashicorp/b-prepare-provider
Make the test compile again
This commit is contained in:
commit
83168ea25f
|
@ -189,9 +189,8 @@ func TestLocal_refreshValidate(t *testing.T) {
|
|||
}
|
||||
<-run.Done()
|
||||
|
||||
// what are we validating?
|
||||
if !p.ValidateProviderConfigCalled {
|
||||
t.Fatal("validate should be called")
|
||||
if !p.PrepareProviderConfigCalled {
|
||||
t.Fatal("Prepare provider config should be called")
|
||||
}
|
||||
|
||||
checkState(t, b.StateOutPath, `
|
||||
|
|
|
@ -797,8 +797,8 @@ func TestApply_planNoModuleFiles(t *testing.T) {
|
|||
planPath,
|
||||
}
|
||||
apply.Run(args)
|
||||
if p.ValidateProviderConfigCalled {
|
||||
t.Fatal("Validate should not be called with a plan")
|
||||
if p.PrepareProviderConfigCalled {
|
||||
t.Fatal("Prepare provider config should not be called with a plan")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue