tests fix - sqlite driver

This commit is contained in:
Milos Stojanovic
2019-12-25 15:43:51 +01:00
parent 2548574acf
commit ab6ffa8afd
2 changed files with 4 additions and 4 deletions

View File

@@ -23,9 +23,9 @@ class DatabaseAuthTest extends AuthTest
{
$this->auth = new Database($this->session);
$this->auth->init([
'driver' => 'pdo',
'driver' => 'sqlite',
'dsn' => 'sqlite::memory:',
'database' => 'users',
'database' => 'tests/backend/tmp/temp/sqlite',
]);
$this->conn = $this->auth->getConnection();