Skip to content

Commit ee35195

Browse files
author
holtkamp
committed
fix: use Enum value
1 parent 9a7efc3 commit ee35195

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Service/CloudWatchLogs/tests/Unit/Input/DescribeLogGroupsRequestTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace AsyncAws\CloudWatchLogs\Tests\Unit\Input;
44

5+
use AsyncAws\CloudWatchLogs\Enum\LogGroupClass;
56
use AsyncAws\CloudWatchLogs\Input\DescribeLogGroupsRequest;
67
use AsyncAws\Core\Test\TestCase;
78

@@ -13,7 +14,7 @@ public function testRequest(): void
1314
'accountIdentifiers' => ['123456789012'],
1415
'includeLinkedAccounts' => false,
1516
'limit' => 1337,
16-
'logGroupClass' => 'STANDARD',
17+
'logGroupClass' => LogGroupClass::STANDARD,
1718
'logGroupIdentifiers' => ['logGroupIdentifier1'],
1819
'logGroupNamePattern' => 'my-log-group-pattern',
1920
'logGroupNamePrefix' => 'my-log-group',

0 commit comments

Comments
 (0)