From 7cdd08f8ae878a98e33cec2103ad6e565b810759 Mon Sep 17 00:00:00 2001 From: Quentin Date: Sat, 18 May 2024 15:02:10 +0200 Subject: [PATCH] fix(test): wrong function call --- tests/Platforms/SQLServerPlatformTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Platforms/SQLServerPlatformTest.php b/tests/Platforms/SQLServerPlatformTest.php index f602fec25a5..78273954dbd 100644 --- a/tests/Platforms/SQLServerPlatformTest.php +++ b/tests/Platforms/SQLServerPlatformTest.php @@ -125,7 +125,7 @@ public function testGeneratesTypeDeclarationsForStrings(): void ); self::assertEquals( 'NVARCHAR(50)', - $this->platform->getAsciiStringTypeDeclarationSQL( + $this->platform->getStringTypeDeclarationSQL( ['length' => 50, 'fixed' => false] ), );