Merge pull request #21259 from hashicorp/b/test-conformance

Fix incorrect direction of TestConformance
This commit is contained in:
Paul Tyng 2019-05-09 14:33:58 -04:00 committed by GitHub
commit 3bc99857fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ func (n *EvalDiff) Eval(ctx EvalContext) (interface{}, error) {
} }
plannedNewVal = resp.PlannedState plannedNewVal = resp.PlannedState
plannedPrivate = resp.PlannedPrivate plannedPrivate = resp.PlannedPrivate
for _, err := range schema.ImpliedType().TestConformance(plannedNewVal.Type()) { for _, err := range plannedNewVal.Type().TestConformance(schema.ImpliedType()) {
diags = diags.Append(tfdiags.Sourceless( diags = diags.Append(tfdiags.Sourceless(
tfdiags.Error, tfdiags.Error,
"Provider produced invalid plan", "Provider produced invalid plan",