Skip to content

Commit

Permalink
Fix case sensitive issue in table alias.
Browse files Browse the repository at this point in the history
This was causing build failures for a few setups.
  • Loading branch information
markstory committed Jul 12, 2014
1 parent 6eed741 commit 48e457e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/ORM/ResultSetTest.php
Expand Up @@ -293,7 +293,7 @@ public function testHasOneEagerLoaderLeavesEmptyAssocation() {
$this->assertEquals(1, $article->id);
$this->assertNotEmpty($article->title);

$article = $this->table->find()->where(['Articles.id' => 1])
$article = $this->table->find()->where(['articles.id' => 1])
->contain(['Comments'])
->hydrate(false)
->first();
Expand Down

0 comments on commit 48e457e

Please sign in to comment.