Skip to content

Commit

Permalink
Just making the names look the same (for easy phpunit --filter with a…
Browse files Browse the repository at this point in the history
… regex).
  • Loading branch information
bar committed Mar 20, 2014
1 parent 89d8a09 commit 0676350
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/ORM/QueryTest.php
Expand Up @@ -1040,7 +1040,7 @@ public function testHydrateSimple() {
*
* @return void
*/
public function testHydrateWithHasMany() {
public function testHydrateHasMany() {
$table = TableRegistry::get('authors');
TableRegistry::get('articles');
$table->hasMany('articles', [
Expand Down Expand Up @@ -1199,7 +1199,7 @@ public function testHydrateCustomObject() {
*
* @return void
*/
public function testHydrateWithHasManyCustomEntity() {
public function testHydrateHasManyCustomEntity() {
$authorEntity = $this->getMockClass('\Cake\ORM\Entity', ['foo']);
$articleEntity = $this->getMockClass('\Cake\ORM\Entity', ['foo']);
$table = TableRegistry::get('authors', [
Expand Down

0 comments on commit 0676350

Please sign in to comment.