Skip to content

Commit 4dcee14

Browse files
author
Malte Riesch
committed
AbstractTableFactoryTest.php was PHP 5.4 specific, made it PHP 5.3 compatible
1 parent 4df5d00 commit 4dcee14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TestDbAcle/Db/Sqlite/TableFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ function test_createTable()
1313
function test_createColumn()
1414
{
1515
$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"]));
16+
$this->assertEquals(new \TestDbAcle\Db\Sqlite\Table\Column(array("foo")), $tableFactory->createColumn(array("foo")));
1717
}
1818
}

0 commit comments

Comments
 (0)