Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
associated was renamed to associations.
  • Loading branch information
markstory committed Mar 10, 2014
1 parent d82dc8c commit 83a54a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ORM/Table.php
Expand Up @@ -1752,7 +1752,7 @@ public function __debugInfo() {
'table' => $this->table(),
'alias' => $this->alias(),
'entityClass' => $this->entityClass(),
'associated' => $this->_associated->keys(),
'associations' => $this->_associations->keys(),
'behaviors' => $this->_behaviors->loaded(),
'defaultConnection' => $this->defaultConnectionName(),
'connectionName' => $conn ? $conn->configName() : null
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/ORM/TableTest.php
Expand Up @@ -3256,7 +3256,7 @@ public function testDebugInfo() {
'table' => 'articles',
'alias' => 'articles',
'entityClass' => 'TestApp\Model\Entity\Article',
'associated' => ['authors', 'tags', 'articlestags'],
'associations' => ['authors', 'tags', 'articlestags'],
'behaviors' => ['Timestamp'],
'defaultConnection' => 'default',
'connectionName' => 'test'
Expand Down

0 comments on commit 83a54a9

Please sign in to comment.