From 0676350de03d359446190bbcb62bcfcd39fdeaa7 Mon Sep 17 00:00:00 2001 From: Ber Clausen Date: Wed, 19 Mar 2014 21:22:26 -0300 Subject: [PATCH] Just making the names look the same (for easy phpunit --filter with a regex). --- tests/TestCase/ORM/QueryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCase/ORM/QueryTest.php b/tests/TestCase/ORM/QueryTest.php index 54099b372f6..363bfaba7e2 100644 --- a/tests/TestCase/ORM/QueryTest.php +++ b/tests/TestCase/ORM/QueryTest.php @@ -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', [ @@ -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', [