Skip to content

Commit 163a31e

Browse files
Fix variable name
Signed-off-by: KeisukeYamashita <[email protected]>
1 parent 8792690 commit 163a31e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

terraform/parser_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ can't guarantee that exactly these actions will be performed if
8686
"terraform apply" is subsequently run.
8787
`
8888

89-
const planOutputChangesOnlySuccessResult0_12 = `
89+
const planOnlyOutputChangesSuccessResult0_12 = `
9090
Refreshing Terraform state in-memory prior to plan...
9191
The refreshed state will be used to calculate this plan, but will not be
9292
persisted to local or remote state storage.
@@ -124,7 +124,7 @@ can't guarantee that exactly these actions will be performed if
124124
"terraform apply" is subsequently run.
125125
`
126126

127-
const planOutputChangesOnlySuccessResult0_15 = `
127+
const planOnlyOutputChangesSuccessResult0_15 = `
128128
Refreshing Terraform state in-memory prior to plan...
129129
The refreshed state will be used to calculate this plan, but will not be
130130
persisted to local or remote state storage.
@@ -535,7 +535,7 @@ func TestPlanParserParse(t *testing.T) {
535535
},
536536
{
537537
name: "plan output changes only pattern 0.12",
538-
body: planOutputChangesOnlySuccessResult0_12,
538+
body: planOnlyOutputChangesSuccessResult0_12,
539539
result: ParseResult{
540540
Result: "Plan: 0 to add, 0 to change, 0 to destroy.",
541541
HasAddOrUpdateOnly: true,
@@ -548,7 +548,7 @@ func TestPlanParserParse(t *testing.T) {
548548
},
549549
{
550550
name: "plan output changes only pattern 0.15",
551-
body: planOutputChangesOnlySuccessResult0_15,
551+
body: planOnlyOutputChangesSuccessResult0_15,
552552
result: ParseResult{
553553
Result: "Changes to Outputs:",
554554
HasAddOrUpdateOnly: true,

0 commit comments

Comments
 (0)