terraform: update a test to be easier to target

This commit is contained in:
Mitchell Hashimoto 2016-09-17 17:36:15 -07:00
parent 80ef7f1acf
commit cd04ccfa62
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 4 additions and 2 deletions

View File

@ -3945,7 +3945,7 @@ func TestContext2Apply_outputMultiIndex(t *testing.T) {
}
}
func TestContext2Apply_taint(t *testing.T) {
func TestContext2Apply_taintX(t *testing.T) {
m := testModule(t, "apply-taint")
p := testProvider("aws")
@ -3993,8 +3993,10 @@ func TestContext2Apply_taint(t *testing.T) {
State: s,
})
if _, err := ctx.Plan(); err != nil {
if p, err := ctx.Plan(); err != nil {
t.Fatalf("err: %s", err)
} else {
t.Logf("plan: %s", p)
}
state, err := ctx.Apply()