We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4df5d00 commit 4dcee14Copy full SHA for 4dcee14
tests/TestDbAcle/Db/Sqlite/TableFactoryTest.php
@@ -13,6 +13,6 @@ function test_createTable()
13
function test_createColumn()
14
{
15
$tableFactory = new \TestDbAcle\Db\Sqlite\TableFactory(\Mockery::mock('\TestDbAcle\Db\AbstractPdoFacade'));
16
- $this->assertEquals(new \TestDbAcle\Db\Sqlite\Table\Column(array("foo")), $tableFactory->createColumn(["foo"]));
+ $this->assertEquals(new \TestDbAcle\Db\Sqlite\Table\Column(array("foo")), $tableFactory->createColumn(array("foo")));
17
}
18
0 commit comments