Skip to content

Commit

Permalink
Fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Oct 9, 2024
1 parent ae5fe9f commit 0bc6495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ColumnFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function testFromDbType(string $dbType, string $expectedType, string $exp
parent::testFromDbType($dbType, $expectedType, $expectedInstanceOf);

$db = $this->getConnection();
$columnFactory = $db->getColumnFactory();
$columnFactory = $db->getSchema()->getColumnFactory();

// With dimension
$column = $columnFactory->fromDbType($dbType, ['dimension' => 1]);
Expand Down Expand Up @@ -60,7 +60,7 @@ public function testFromType(string $type, string $expectedType, string $expecte
parent::testFromType($type, $expectedType, $expectedInstanceOf);

$db = $this->getConnection();
$columnFactory = $db->getColumnFactory();
$columnFactory = $db->getSchema()->getColumnFactory();

// With dimension
$column = $columnFactory->fromType($type, ['dimension' => 1]);
Expand Down

0 comments on commit 0bc6495

Please sign in to comment.