From 5e9bd131d19425038eac0e414de1e400c1b0532e Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 7 Mar 2012 21:01:48 -0500 Subject: [PATCH] added hostname to firebird test connection --- tests/databases/firebird.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/databases/firebird.php b/tests/databases/firebird.php index 2d24587..c6c342a 100644 --- a/tests/databases/firebird.php +++ b/tests/databases/firebird.php @@ -33,7 +33,7 @@ class FirebirdTest extends UnitTestCase { function setUp() { $dbpath = TEST_DIR.DS.'test_dbs'.DS.'FB_TEST_DB.FDB'; - $this->db = new Firebird($dbpath); + $this->db = new Firebird('localhost:'.$dbpath); $this->tables = $this->db->get_tables(); }