From 1b8ef667f7260c6eefac2c5849554b4ab9a06ed9 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Sun, 30 Mar 2014 19:33:46 +0400 Subject: [PATCH] Fixes #2911: Removed `tbl_` default for table prefix --- tests/unit/models/UserTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/models/UserTest.php b/tests/unit/models/UserTest.php index 8cd9215..19ab30d 100644 --- a/tests/unit/models/UserTest.php +++ b/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