Skip to content

Commit

Permalink
Fixing last minute syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed May 4, 2013
1 parent 19b14d6 commit 4789a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/TestCase/ORM/TableTest.php
Expand Up @@ -113,7 +113,7 @@ public function testConfigAndBuild() {
Table::config('things', $options);
$map = Table::config();
$this->assertEquals(['things' => $options], $map);
$this->assertEquals($options, Table::config'things'));
$this->assertEquals($options, Table::config('things'));

$schema = ['id' => ['rubbish']];
$options += ['schema' => $schema];
Expand Down

0 comments on commit 4789a69

Please sign in to comment.