diff --git a/tests/databases/mysql-qb.php b/tests/databases/mysql-qb.php index c0ebecb..5c5f878 100644 --- a/tests/databases/mysql-qb.php +++ b/tests/databases/mysql-qb.php @@ -19,7 +19,7 @@ class MySQLQBTest extends QBTest { parent::__construct(); // Attempt to connect, if there is a test config file - if (is_file("../test_config.json")) + /*if (is_file("../test_config.json")) { $params = json_decode(file_get_contents("../test_config.json")); $params = $params->mysql; @@ -29,7 +29,7 @@ class MySQLQBTest extends QBTest { // echo '
MySQL Queries
'; } - elseif ( ! empty($_ENV['TRAVIS'])) + elseif ( ! empty($_ENV['TRAVIS']))*/ { $params = array( 'host' => '127.0.0.1', diff --git a/tests/databases/mysql.php b/tests/databases/mysql.php index 185e9a7..37f7a26 100644 --- a/tests/databases/mysql.php +++ b/tests/databases/mysql.php @@ -22,16 +22,16 @@ class MySQLTest extends DBTest { function setUp() { // Attempt to connect, if there is a test config file - if (is_file("../test_config.json")) + /*if (is_file("../test_config.json")) { $params = json_decode(file_get_contents("../test_config.json")); $params = $params->mysql; $this->db = new MySQL("host={$params->host};port={$params->port};dbname={$params->database}", $params->user, $params->pass); } - elseif ( ! empty($_ENV['TRAVIS'])) + elseif ( ! empty($_ENV['TRAVIS']))*/ { - $this->db = new MySQL('host=127.0.0.1;dbname=test', 'root'); + $this->db = new MySQL('host=127.0.0.1;port=3306;dbname=test', 'root'); } }