diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-09 22:34:21 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-09 22:34:21 +0200 |
commit | f243ce13b4baf5bf8bebf36586514bb243dfc355 (patch) | |
tree | 6f9b26f7b1c82f50c0c9e4a1d0190b3398948da7 /tests/mocks/database/config/pdo/mysql.php | |
parent | c186288755aba46a2b6f0c3f104d9a6ce6b11a7f (diff) |
Cleanup/optimize tests/mocks/
Diffstat (limited to 'tests/mocks/database/config/pdo/mysql.php')
-rw-r--r-- | tests/mocks/database/config/pdo/mysql.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/mocks/database/config/pdo/mysql.php b/tests/mocks/database/config/pdo/mysql.php index cefb6b008..fefe0d624 100644 --- a/tests/mocks/database/config/pdo/mysql.php +++ b/tests/mocks/database/config/pdo/mysql.php @@ -1,7 +1,7 @@ <?php return array( - + // Typical Database configuration 'pdo/mysql' => array( 'dsn' => '', @@ -10,7 +10,7 @@ return array( 'password' => '', 'database' => 'ci_test', 'dbdriver' => 'pdo', - 'pdodriver' => 'mysql', + 'pdodriver' => 'mysql' ), // Database configuration with failover @@ -30,8 +30,8 @@ return array( 'password' => '', 'database' => 'ci_test', 'dbdriver' => 'pdo', - 'pdodriver' => 'mysql', - ), - ), - ), + 'pdodriver' => 'mysql' + ) + ) + ) );
\ No newline at end of file |