Skip to content

Commit 603c2c5

Browse files
committed
cs fixes
Signed-off-by: Fawzi E. Abdulfattah <[email protected]>
1 parent 6055277 commit 603c2c5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Components/CreateDefinitionTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,9 @@ public function testBuildWithInvisibleKeyword()
145145

146146
public function testBuildWithCompressed(): void
147147
{
148-
149148
$query = 'CREATE TABLE `user` ( `message2` TEXT COMPRESSED )';
150149
$parser = new Parser($query);
151150
$stmt = $parser->statements[0];
152-
$this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ",$stmt->build());
151+
$this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ", $stmt->build());
153152
}
154153
}

0 commit comments

Comments
 (0)