diff --git a/terraform/context_apply_test.go b/terraform/context_apply_test.go index ae8e509a17..f53393a7eb 100644 --- a/terraform/context_apply_test.go +++ b/terraform/context_apply_test.go @@ -6900,6 +6900,7 @@ 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) @@ -7065,6 +7066,7 @@ 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)