Browse Source

Reverting another change

Jose Lorenzo Rodriguez 12 years ago
parent
commit
1f00a9a567
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/ORM/CompositeKeysTest.php

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

@@ -76,7 +76,7 @@ class CompositeKeyTest extends TestCase {
  * @dataProvider strategiesProvider
  * @return void
  */
-	public function _testHasManyEager($strategy) {
+	public function testHasManyEager($strategy) {
 		$table = TableRegistry::get('SiteAuthors');
 		$table->hasMany('SiteArticles', [
 			'propertyName' => 'articles',
@@ -149,7 +149,7 @@ class CompositeKeyTest extends TestCase {
  * @dataProvider strategiesProvider
  * @return void
  **/
-	public function _testBelongsToManyEager($strategy) {
+	public function testBelongsToManyEager($strategy) {
 		$articles = TableRegistry::get('SiteArticles');
 		$tags = TableRegistry::get('SiteTags');
 		$junction = TableRegistry::get('SiteArticlesTags');