Skip to content

Commit

Permalink
Fixed CS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jan 5, 2014
1 parent 0714dc6 commit 4476db0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cake/Test/TestCase/ORM/Association/BelongsToTest.php
Expand Up @@ -193,7 +193,7 @@ public function testAttachToWithQueryBuilder() {
'conditions' => new QueryExpression([
'Companies.is_active' => true,
['Companies.id' => $field],
new QueryExpression(['a' => 1])
new QueryExpression(['a' => 1])
]),
'type' => 'LEFT',
'table' => 'companies',
Expand Down
6 changes: 3 additions & 3 deletions Cake/Test/TestCase/ORM/QueryTest.php
Expand Up @@ -135,7 +135,7 @@ public function testContainToJoinsOneLevel() {
->with(['orders' => [
'table' => 'orders',
'type' => 'INNER',
'conditions' => new QueryExpression([
'conditions' => new QueryExpression([
['clients.id' => new IdentifierExpression('orders.client_id')]
])
]])
Expand All @@ -145,7 +145,7 @@ public function testContainToJoinsOneLevel() {
->with(['orderTypes' => [
'table' => 'order_types',
'type' => 'LEFT',
'conditions' => new QueryExpression([
'conditions' => new QueryExpression([
['orderTypes.id' => new IdentifierExpression('orders.order_type_id')]
])
]])
Expand Down Expand Up @@ -175,7 +175,7 @@ public function testContainToJoinsOneLevel() {
->with(['companies' => [
'table' => 'organizations',
'type' => 'LEFT',
'conditions' => new QueryExpression([
'conditions' => new QueryExpression([
['companies.id' => new IdentifierExpression('clients.organization_id')]
])
]])
Expand Down

0 comments on commit 4476db0

Please sign in to comment.