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() <-run.Done()
// what are we validating? if !p.PrepareProviderConfigCalled {
if !p.ValidateProviderConfigCalled { t.Fatal("Prepare provider config should be called")
t.Fatal("validate should be called")
} }
checkState(t, b.StateOutPath, ` checkState(t, b.StateOutPath, `

View File

@ -797,8 +797,8 @@ func TestApply_planNoModuleFiles(t *testing.T) {
planPath, planPath,
} }
apply.Run(args) apply.Run(args)
if p.ValidateProviderConfigCalled { if p.PrepareProviderConfigCalled {
t.Fatal("Validate should not be called with a plan") t.Fatal("Prepare provider config should not be called with a plan")
} }
} }