From 580e941401af1da33dd3e3440494d5906ff25283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sat, 6 Feb 2021 11:14:10 +0200 Subject: [PATCH] fixup! Disable TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED for PHP 5.4/5.5 in GHA --- tests/TestConfiguration.ci.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestConfiguration.ci.php b/tests/TestConfiguration.ci.php index 559fcda2b..279a54ca3 100644 --- a/tests/TestConfiguration.ci.php +++ b/tests/TestConfiguration.ci.php @@ -49,10 +49,10 @@ * the native Mysqli adapters, but the other properties are shared between the * two MySQL-related Zend_Db adapters. */ -// Skip testing PDO_MYSQL for PHP 5.4/5.5, as the error is not fixable +// Skip testing ext/mysqli for PHP 5.4/5.5, as the error is not fixable // https://github.com/zf1s/zf1/pull/49/files#r565875073 -defined('TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED') || define('TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED', !(PHP_VERSION_ID >= 50400 && PHP_VERSION_ID < 50600)); -defined('TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED') || define('TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED', true); +defined('TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED') || define('TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED', true); +defined('TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED') || define('TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED', !(PHP_VERSION_ID >= 50400 && PHP_VERSION_ID < 50600)); defined('TESTS_ZEND_DB_ADAPTER_MYSQL_HOSTNAME') || define('TESTS_ZEND_DB_ADAPTER_MYSQL_HOSTNAME', getenv('MYSQL_HOST')); defined('TESTS_ZEND_DB_ADAPTER_MYSQL_USERNAME') || define('TESTS_ZEND_DB_ADAPTER_MYSQL_USERNAME', getenv('MYSQL_USER')); defined('TESTS_ZEND_DB_ADAPTER_MYSQL_PASSWORD') || define('TESTS_ZEND_DB_ADAPTER_MYSQL_PASSWORD', getenv('MYSQL_PASSWORD'));