@@ -86,7 +86,7 @@ can't guarantee that exactly these actions will be performed if
86
86
"terraform apply" is subsequently run.
87
87
`
88
88
89
- const planOutputChangesOnlySuccessResult0_12 = `
89
+ const planOnlyOutputChangesSuccessResult0_12 = `
90
90
Refreshing Terraform state in-memory prior to plan...
91
91
The refreshed state will be used to calculate this plan, but will not be
92
92
persisted to local or remote state storage.
@@ -124,7 +124,7 @@ can't guarantee that exactly these actions will be performed if
124
124
"terraform apply" is subsequently run.
125
125
`
126
126
127
- const planOutputChangesOnlySuccessResult0_15 = `
127
+ const planOnlyOutputChangesSuccessResult0_15 = `
128
128
Refreshing Terraform state in-memory prior to plan...
129
129
The refreshed state will be used to calculate this plan, but will not be
130
130
persisted to local or remote state storage.
@@ -535,7 +535,7 @@ func TestPlanParserParse(t *testing.T) {
535
535
},
536
536
{
537
537
name : "plan output changes only pattern 0.12" ,
538
- body : planOutputChangesOnlySuccessResult0_12 ,
538
+ body : planOnlyOutputChangesSuccessResult0_12 ,
539
539
result : ParseResult {
540
540
Result : "Plan: 0 to add, 0 to change, 0 to destroy." ,
541
541
HasAddOrUpdateOnly : true ,
@@ -548,7 +548,7 @@ func TestPlanParserParse(t *testing.T) {
548
548
},
549
549
{
550
550
name : "plan output changes only pattern 0.15" ,
551
- body : planOutputChangesOnlySuccessResult0_15 ,
551
+ body : planOnlyOutputChangesSuccessResult0_15 ,
552
552
result : ParseResult {
553
553
Result : "Changes to Outputs:" ,
554
554
HasAddOrUpdateOnly : true ,
0 commit comments