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
|
||||
errors.txt
|
||||
*/simpletest/*
|
||||
tests/test_dbs/*
|
||||
*.db
|
||||
*.FDB
|
||||
tests/test_dbs/*
|
@ -22,8 +22,9 @@ class SQLiteTest extends UnitTestCase {
|
||||
function __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()
|
||||
|
Loading…
Reference in New Issue
Block a user