Remove unecessary sqlite test file

This commit is contained in:
Timothy Warren 2012-02-29 15:25:35 -05:00
parent ee287a5acb
commit a9c9ff14cb
2 changed files with 4 additions and 5 deletions

2
.gitignore vendored
View File

@ -4,5 +4,3 @@ settings.json
errors.txt
*/simpletest/*
tests/test_dbs/*
*.db
*.FDB

View File

@ -23,7 +23,8 @@ class SQLiteTest extends UnitTestCase {
{
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()