From a9c9ff14cb68ded8dbe773a3a0a7ce918b67f087 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 29 Feb 2012 15:25:35 -0500 Subject: [PATCH] Remove unecessary sqlite test file --- .gitignore | 4 +--- tests/databases/sqlite.php | 5 +++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index fb35caa..d910a93 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,4 @@ settings.json errors.txt */simpletest/* -tests/test_dbs/* -*.db -*.FDB \ No newline at end of file +tests/test_dbs/* \ No newline at end of file diff --git a/tests/databases/sqlite.php b/tests/databases/sqlite.php index 811478d..3e9fe89 100644 --- a/tests/databases/sqlite.php +++ b/tests/databases/sqlite.php @@ -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()