added hostname to firebird test connection

This commit is contained in:
Timothy Warren 2012-03-07 21:01:48 -05:00 committed by Timothy J. Warren
parent 7516b73aca
commit 5e9bd131d1
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class FirebirdTest extends UnitTestCase {
function setUp() function setUp()
{ {
$dbpath = TEST_DIR.DS.'test_dbs'.DS.'FB_TEST_DB.FDB'; $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(); $this->tables = $this->db->get_tables();
} }