Confirmed these two tests are fine behavior manually running test case

This commit is contained in:
Pam Selle 2019-11-22 16:21:15 -05:00
parent 01da7b4f7f
commit e8aa5bfdc9

View File

@ -6900,7 +6900,6 @@ func TestContext2Apply_destroyWithModuleVariableAndCount(t *testing.T) {
actual := strings.TrimSpace(state.String())
expected := strings.TrimSpace(`
<no state>
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(`
<no state>
module.child.child2:
`)
if actual != expected {
t.Fatalf("expected: \n%s\n\nbad: \n%s", expected, actual)