Remove unecessary sqlite test file
This commit is contained in:
parent
ee287a5acb
commit
a9c9ff14cb
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,6 +3,4 @@
|
|||||||
settings.json
|
settings.json
|
||||||
errors.txt
|
errors.txt
|
||||||
*/simpletest/*
|
*/simpletest/*
|
||||||
tests/test_dbs/*
|
tests/test_dbs/*
|
||||||
*.db
|
|
||||||
*.FDB
|
|
@ -22,8 +22,9 @@ class SQLiteTest extends UnitTestCase {
|
|||||||
function __construct()
|
function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
|
|
||||||
$this->db = new SQLite(dirname(__FILE__)."/../test_dbs/test_sqlite.db");
|
$path = dirname(__FILE__)."/../test_dbs/test_sqlite.db";
|
||||||
|
$this->db = new SQLite($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
function TestConnection()
|
function TestConnection()
|
||||||
|
Loading…
Reference in New Issue
Block a user