terraform: update a test to be easier to target
This commit is contained in:
parent
80ef7f1acf
commit
cd04ccfa62
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue