diff --git a/tests/databases/firebird.php b/tests/databases/firebird.php index 45b910f..343088d 100644 --- a/tests/databases/firebird.php +++ b/tests/databases/firebird.php @@ -32,7 +32,7 @@ class FirebirdTest extends UnitTestCase { function TestConnection() { - $this->firebird = new Firebird("../test_dbs/FB_TEST_DB.FDB"); + $this->firebird = new Firebird(dirname(__FILE__)."/../test_dbs/FB_TEST_DB.FDB"); $this->assertIsA($this->firebird, 'Firebird'); } } \ No newline at end of file diff --git a/tests/databases/sqlite.php b/tests/databases/sqlite.php index 50f5a4f..28ea562 100644 --- a/tests/databases/sqlite.php +++ b/tests/databases/sqlite.php @@ -32,7 +32,7 @@ class SQLiteTest extends UnitTestCase { function TestConnection() { - $this->sqlite = new SQLite("../test_dbs/test_sqlite.db"); + $this->sqlite = new SQLite("./test_dbs/test_sqlite.db"); $this->assertIsA($this->sqlite, 'SQLite'); } } \ No newline at end of file diff --git a/tests/test_dbs/FB_TEST_DB.FDB b/tests/test_dbs/FB_TEST_DB.FDB old mode 100644 new mode 100755 index f4a8e1e..1b2c315 Binary files a/tests/test_dbs/FB_TEST_DB.FDB and b/tests/test_dbs/FB_TEST_DB.FDB differ