@@ -24,7 +24,7 @@ import (
2424
2525func TestAccSumologicFieldExtractionRule_basic (t * testing.T ) {
2626 var fieldextractionrule FieldExtractionRule
27- testName := FieldsMap ["FieldExtractionRule" ]["name" + acctest .RandString (8 )]
27+ testName := FieldsMap ["FieldExtractionRule" ]["name" ] + acctest .RandString (8 )
2828 testScope := FieldsMap ["FieldExtractionRule" ]["scope" ]
2929 testParseExpression := FieldsMap ["FieldExtractionRule" ]["parseExpression" ]
3030 testEnabled , _ := strconv .ParseBool (FieldsMap ["FieldExtractionRule" ]["enabled" ])
@@ -48,7 +48,7 @@ func TestAccSumologicFieldExtractionRule_basic(t *testing.T) {
4848
4949func TestAccSumologicFieldExtractionRule_create (t * testing.T ) {
5050 var fieldextractionrule FieldExtractionRule
51- testName := FieldsMap ["FieldExtractionRule" ]["name" + acctest .RandString (8 )]
51+ testName := FieldsMap ["FieldExtractionRule" ]["name" ] + acctest .RandString (8 )
5252 testScope := FieldsMap ["FieldExtractionRule" ]["scope" ]
5353 testParseExpression := FieldsMap ["FieldExtractionRule" ]["parseExpression" ]
5454 testEnabled , _ := strconv .ParseBool (FieldsMap ["FieldExtractionRule" ]["enabled" ])
@@ -116,12 +116,12 @@ func testAccCheckFieldExtractionRuleExists(name string, fieldextractionrule *Fie
116116func TestAccSumologicFieldExtractionRule_update (t * testing.T ) {
117117 var fieldextractionrule FieldExtractionRule
118118 randomSuffix := acctest .RandString (8 )
119- testName := FieldsMap ["FieldExtractionRule" ]["name" + randomSuffix ]
119+ testName := FieldsMap ["FieldExtractionRule" ]["name" ] + randomSuffix
120120 testScope := FieldsMap ["FieldExtractionRule" ]["scope" ]
121121 testParseExpression := FieldsMap ["FieldExtractionRule" ]["parseExpression" ]
122122 testEnabled , _ := strconv .ParseBool (FieldsMap ["FieldExtractionRule" ]["enabled" ])
123123
124- testUpdatedName := FieldsMap ["FieldExtractionRule" ]["updatedName" + randomSuffix ]
124+ testUpdatedName := FieldsMap ["FieldExtractionRule" ]["updatedName" ] + randomSuffix
125125 testUpdatedScope := FieldsMap ["FieldExtractionRule" ]["updatedScope" ]
126126 testUpdatedParseExpression := FieldsMap ["FieldExtractionRule" ]["updatedParseExpression" ]
127127 testUpdatedEnabled , _ := strconv .ParseBool (FieldsMap ["FieldExtractionRule" ]["updatedEnabled" ])
0 commit comments