Make the test compile again

Not sure if these checks still make sense, but without this change the test don’t compile for the related packages.
This commit is contained in:
Sander van Harmelen 2018-10-19 15:29:14 +02:00
parent 17b883f592
commit b846c5f653
2 changed files with 4 additions and 5 deletions

View File

@ -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, `

View File

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