Browse Source

Just making the names look the same (for easy phpunit --filter with a regex).

Ber Clausen 12 years ago
parent
commit
0676350de0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/ORM/QueryTest.php

+ 2 - 2
tests/TestCase/ORM/QueryTest.php

@@ -1040,7 +1040,7 @@ class QueryTest extends TestCase {
  *
  * @return void
  */
-	public function testHydrateWithHasMany() {
+	public function testHydrateHasMany() {
 		$table = TableRegistry::get('authors');
 		TableRegistry::get('articles');
 		$table->hasMany('articles', [
@@ -1199,7 +1199,7 @@ class QueryTest extends TestCase {
  *
  * @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', [