Skip to content

Commit

Permalink
Fixed remaining tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 22, 2014
1 parent f31bb87 commit 46240c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/TestCase/ORM/EagerLoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function testContainToJoinsOneLevel() {
'type' => 'LEFT',
'conditions' => new QueryExpression([
['clients.id' => new IdentifierExpression('foo.client_id')]
])
], ['clients.id' => 'integer'])
]])
->will($this->returnValue($query));

Expand All @@ -135,7 +135,7 @@ public function testContainToJoinsOneLevel() {
'type' => 'LEFT',
'conditions' => new QueryExpression([
['orderTypes.id' => new IdentifierExpression('orders.order_type_id')]
])
], ['orderTypes.id' => 'integer'])
]])
->will($this->returnValue($query));

Expand All @@ -155,7 +155,7 @@ public function testContainToJoinsOneLevel() {
'type' => 'LEFT',
'conditions' => new QueryExpression([
['stuffTypes.id' => new IdentifierExpression('stuff.stuff_type_id')]
])
], ['stuffTypes.id' => 'integer'])
]])
->will($this->returnValue($query));

Expand All @@ -165,7 +165,7 @@ public function testContainToJoinsOneLevel() {
'type' => 'LEFT',
'conditions' => new QueryExpression([
['companies.id' => new IdentifierExpression('clients.organization_id')]
])
], ['companies.id' => 'integer'])
]])
->will($this->returnValue($query));

Expand All @@ -175,7 +175,7 @@ public function testContainToJoinsOneLevel() {
'type' => 'LEFT',
'conditions' => new QueryExpression([
['categories.id' => new IdentifierExpression('companies.category_id')]
])
], ['categories.id' => 'integer'])
]])
->will($this->returnValue($query));

Expand Down

0 comments on commit 46240c5

Please sign in to comment.