@@ -52,11 +52,11 @@ func TestAccSumologicSCEMatchList_createAndUpdate(t *testing.T) {
5252 },
5353 // Updates the match list and its 1 match list item
5454 {
55- Config : testCreateCSEMatchListConfig (uDefaultTtl , uDescription , nName , nTargetColumn , liDescription , liExpiration , liValue , liCount ),
55+ Config : testCreateCSEMatchListConfig (uDefaultTtl , uDescription , nName , nTargetColumn , liDescription , uliExpiration , liValue , liCount ),
5656 Check : resource .ComposeTestCheckFunc (
5757 testCheckCSEMatchListExists (resourceName , & matchList ),
58- testCheckMatchListValues (& matchList , nDefaultTtl , nDescription , nName , nTargetColumn ),
59- testCheckMatchListItemsValuesAndCount (resourceName , liDescription , liExpiration , liValue , liCount ),
58+ testCheckMatchListValues (& matchList , uDefaultTtl , uDescription , nName , nTargetColumn ),
59+ testCheckMatchListItemsValuesAndCount (resourceName , liDescription , uliExpiration , liValue , liCount ),
6060 resource .TestCheckResourceAttrSet (resourceName , "id" ),
6161 ),
6262 },
@@ -107,14 +107,12 @@ func testCreateCSEMatchListConfig(nDefaultTtl int, nDescription string, nName st
107107 var itemsStr = ""
108108
109109 for i := 0 ; i < numItems ; i ++ {
110- id := uuid .New ()
111-
112110 itemsStr += fmt .Sprintf (`
113111 items {
114- description = "%s %d %s "
112+ description = "%s %d"
115113 expiration = "%s"
116- value = "%s %d %s "
117- }` , liDescription , i , id , liExpiration , liValue , i , id )
114+ value = "%s %d"
115+ }` , liDescription , i , liExpiration , liValue , i )
118116 }
119117
120118 var str = fmt .Sprintf (`
0 commit comments