Skip to content

Commit 752f6cf

Browse files
Fix cs
1 parent f34ba6a commit 752f6cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/Platforms/AbstractPlatformTestCase.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,10 @@ public static function getEnumDeclarationSQLProvider(): array
12221222
#[DataProvider('getEnumDeclarationWithLengthSQLProvider')]
12231223
public function testGetEnumDeclarationWithLengthSQL(array $values, int $length, string $expectedSQL): void
12241224
{
1225-
self::assertSame($expectedSQL, $this->platform->getEnumDeclarationSQL(['values' => $values, 'length' => $length]));
1225+
self::assertSame($expectedSQL, $this->platform->getEnumDeclarationSQL([
1226+
'values' => $values,
1227+
'length' => $length,
1228+
]));
12261229
}
12271230

12281231
/** @return array<string, array{array<string>, int, string}> */

0 commit comments

Comments
 (0)