Fix incorrect direction of TestConformance
This commit is contained in:
parent
00cc5781ab
commit
15f7f8049f
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue