Skip to content

Commit

Permalink
fix(style): add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Yovach committed May 21, 2024
1 parent 7cdd08f commit d4651ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Platforms/SQLServerPlatformTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function testGeneratesTypeDeclarationsForStrings(): void
self::assertEquals(
'NVARCHAR(50)',
$this->platform->getStringTypeDeclarationSQL(
['length' => 50, 'fixed' => false]
['length' => 50, 'fixed' => false],
),
);
self::assertEquals(
Expand Down Expand Up @@ -159,7 +159,7 @@ public function testGeneratesTypeDeclarationsForAsciiStrings(): void
self::assertEquals(
'VARCHAR(50)',
$this->platform->getAsciiStringTypeDeclarationSQL(
['length' => 50, 'fixed' => false]
['length' => 50, 'fixed' => false],
),
);
self::assertEquals(
Expand Down

0 comments on commit d4651ec

Please # to comment.