Skip to content

Commit 4b8fb33

Browse files
committed
Fixing tests so custom URIs in other tests no longer break us.
1 parent 8b1358f commit 4b8fb33

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/Config/Database.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class Database extends \CodeIgniter\Database\Config
6262
'hostname' => '127.0.0.1',
6363
'username' => '',
6464
'password' => '',
65-
'database' => '',
66-
'DBDriver' => '',
67-
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE.
65+
'database' => ':memory:',
66+
'DBDriver' => 'SQLite3',
67+
'DBPrefix' => 'db_', // Needed to ensure we're working correctly with prefixes live. DO NOT REMOVE FOR CI DEVS
6868
'pConnect' => false,
6969
'DBDebug' => (ENVIRONMENT !== 'production'),
7070
'cacheOn' => false,

0 commit comments

Comments
 (0)