@@ -15,7 +15,7 @@ func TestCloudWatchLogProvider(t *testing.T) {
1515 DescribeLogGroupsFn : func (input * cloudwatchlogs.DescribeLogGroupsInput ) (* cloudwatchlogs.DescribeLogGroupsOutput , error ) {
1616 return & cloudwatchlogs.DescribeLogGroupsOutput {
1717 LogGroups : []* cloudwatchlogs.LogGroup {
18- & cloudwatchlogs. LogGroup {LogGroupName : input .LogGroupNamePrefix },
18+ {LogGroupName : input .LogGroupNamePrefix },
1919 },
2020 }, nil
2121 },
@@ -102,7 +102,7 @@ func TestCloudWatchLogProvider(t *testing.T) {
102102 DescribeLogGroupsFn : func (input * cloudwatchlogs.DescribeLogGroupsInput ) (* cloudwatchlogs.DescribeLogGroupsOutput , error ) {
103103 return & cloudwatchlogs.DescribeLogGroupsOutput {
104104 LogGroups : []* cloudwatchlogs.LogGroup {
105- & cloudwatchlogs. LogGroup {LogGroupName : input .LogGroupNamePrefix },
105+ {LogGroupName : input .LogGroupNamePrefix },
106106 },
107107 }, nil
108108 },
@@ -144,7 +144,7 @@ func TestCloudWatchLogProvider(t *testing.T) {
144144 DescribeLogGroupsFn : func (input * cloudwatchlogs.DescribeLogGroupsInput ) (* cloudwatchlogs.DescribeLogGroupsOutput , error ) {
145145 return & cloudwatchlogs.DescribeLogGroupsOutput {
146146 LogGroups : []* cloudwatchlogs.LogGroup {
147- & cloudwatchlogs. LogGroup {LogGroupName : input .LogGroupNamePrefix },
147+ {LogGroupName : input .LogGroupNamePrefix },
148148 },
149149 }, nil
150150 },
@@ -188,7 +188,7 @@ func TestCloudWatchLogGroupExists(t *testing.T) {
188188 DescribeLogGroupsFn : func (input * cloudwatchlogs.DescribeLogGroupsInput ) (* cloudwatchlogs.DescribeLogGroupsOutput , error ) {
189189 return & cloudwatchlogs.DescribeLogGroupsOutput {
190190 LogGroups : []* cloudwatchlogs.LogGroup {
191- & cloudwatchlogs. LogGroup {LogGroupName : input .LogGroupNamePrefix },
191+ {LogGroupName : input .LogGroupNamePrefix },
192192 },
193193 }, nil
194194 },
0 commit comments