diff --git a/tests/Platforms/SQLServerPlatformTest.php b/tests/Platforms/SQLServerPlatformTest.php index 78273954dbd..b9e5dadf1ec 100644 --- a/tests/Platforms/SQLServerPlatformTest.php +++ b/tests/Platforms/SQLServerPlatformTest.php @@ -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( @@ -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(