core: Partially fix TestContext2Apply_resourceDependsOnModule

Some earlier updates to it changed some things in our expected state
string. This doesn't fully fix it since there seems to still be a bug
related to recording dependencies.
This commit is contained in:
Martin Atkins 2018-09-12 10:43:58 -07:00
parent 0039d3dbf3
commit 3b7a814c51
1 changed files with 4 additions and 0 deletions

View File

@ -793,6 +793,8 @@ const testTerraformApplyResourceDependsOnModuleStr = `
aws_instance.a:
ID = foo
provider = provider.aws
ami = parent
type = aws_instance
Dependencies:
module.child
@ -801,6 +803,8 @@ module.child:
aws_instance.child:
ID = foo
provider = provider.aws
ami = child
type = aws_instance
`
const testTerraformApplyResourceDependsOnModuleDeepStr = `