updated tests config to use "database.db" to prove that the patch is working

This commit is contained in:
Abdul Malik Ikhsan 2020-06-24 01:41:14 +07:00
parent 4f033de404
commit 13b0da0d25
No known key found for this signature in database
GPG Key ID: 23FCCC74D1442CAE
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class AlterTableTest extends CIDatabaseTestCase
$config = [
'DBDriver' => 'SQLite3',
'database' => ':memory:',
'database' => 'database.db',
];
$this->db = db_connect($config);

View File

@ -49,7 +49,7 @@ $dbconfig = [
'hostname' => 'localhost',
'username' => '',
'password' => '',
'database' => ':memory:',
'database' => 'database.db',
'DBDriver' => 'SQLite3',
'DBPrefix' => 'db_',
'pConnect' => false,