From e8aa5bfdc96afd7d058fe48401331f7e0d538b28 Mon Sep 17 00:00:00 2001 From: Pam Selle <204372+pselle@users.noreply.github.com> Date: Fri, 22 Nov 2019 16:21:15 -0500 Subject: [PATCH] Confirmed these two tests are fine behavior manually running test case --- terraform/context_apply_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index f53393a7eb..ae8e509a17 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -6900,7 +6900,6 @@ func TestContext2Apply_destroyWithModuleVariableAndCount(t *testing.T) { actual := strings.TrimSpace(state.String()) expected := strings.TrimSpace(` -module.child: `) if actual != expected { t.Fatalf("expected: \n%s\n\nbad: \n%s", expected, actual) @@ -7066,7 +7065,6 @@ func TestContext2Apply_destroyWithModuleVariableAndCountNested(t *testing.T) { actual := strings.TrimSpace(state.String()) expected := strings.TrimSpace(` -module.child.child2: `) if actual != expected { t.Fatalf("expected: \n%s\n\nbad: \n%s", expected, actual)