Browse Source

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

Alexander Makarov 12 years ago
parent
commit
1b8ef667f7
1 changed files with 2 additions and 2 deletions
  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