Просмотр исходного кода

Fixes #2911: Removed `tbl_` default for table prefix

Alexander Makarov 12 лет назад
Родитель
Сommit
1b8ef667f7
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      tests/unit/models/UserTest.php

+ 2 - 2
tests/unit/models/UserTest.php

@@ -9,8 +9,8 @@ class UserTest extends TestCase
     protected function setUp()
     {
         parent::setUp();
-        // uncomment the following to load fixtures for table tbl_user
-        //$this->loadFixtures(['tbl_user']);
+        // uncomment the following to load fixtures for user table
+        //$this->loadFixtures(['user']);
     }
 
     // TODO add test methods here