Skip to content

Commit

Permalink
updated tests config to use "database.db" to prove that the patch is …
Browse files Browse the repository at this point in the history
…working
  • Loading branch information
samsonasik committed Jun 23, 2020
1 parent 4f033de commit 13b0da0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/system/Database/Live/SQLite/AlterTableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function setUp(): void

$config = [
'DBDriver' => 'SQLite3',
'database' => ':memory:',
'database' => 'database.db',
];

$this->db = db_connect($config);
Expand Down
2 changes: 1 addition & 1 deletion tests/travis/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'hostname' => 'localhost',
'username' => '',
'password' => '',
'database' => ':memory:',
'database' => 'database.db',
'DBDriver' => 'SQLite3',
'DBPrefix' => 'db_',
'pConnect' => false,
Expand Down

0 comments on commit 13b0da0

Please sign in to comment.