Browse Source

Fix a test

Robert Pustułka 9 years ago
parent
commit
0e4a1c2a97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/ORM/TableTest.php

+ 1 - 1
tests/TestCase/ORM/TableTest.php

@@ -3107,7 +3107,7 @@ class TableTest extends TestCase
         $Articles->associations()->removeAll();
 
         $Authors->hasMany('AliasedArticles', [
-            'className' => 'articles',
+            'className' => 'Articles',
             'dependent' => true,
             'cascadeCallbacks' => true
         ]);