From f5361286cc1546defa8afafbddd58a4b23a6af89 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Thu, 8 Oct 2020 14:58:43 -0400 Subject: [PATCH] fix tests that happened during the cleanup --- terraform/context_apply_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index 87a994bf8..2b40d6b86 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -11928,8 +11928,8 @@ resource "test_resource" "foo" { }) p := testProvider("test") - p.ApplyFn = testApplyFn - p.DiffFn = testDiffFn + p.ApplyResourceChangeFn = testApplyFn + p.PlanResourceChangeFn = testDiffFn ctx := testContext2(t, &ContextOpts{ Config: m,