summaryrefslogtreecommitdiff
path: root/ext/mysql/tests/mysql_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysql/tests/mysql_error.phpt')
-rw-r--r--ext/mysql/tests/mysql_error.phpt4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/mysql/tests/mysql_error.phpt b/ext/mysql/tests/mysql_error.phpt
index 82a43fb7b4..9b0729d0c0 100644
--- a/ext/mysql/tests/mysql_error.phpt
+++ b/ext/mysql/tests/mysql_error.phpt
@@ -39,7 +39,9 @@ $tmp = mysql_error($link);
if (!is_string($tmp) || !preg_match("/Table '\w*\.test' doesn't exist/su", $tmp))
printf("[006] Expecting string/[Table... doesn't exit], got %s/%s. [%d] %s\n", gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
-if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) && !is_unicode($tmp)) {
+if ((version_compare(PHP_VERSION, '5.9.9', '>') == 1) &&
+ (version_compare(PHP_VERSION, '6.9.9', '<=') == 1) &&
+ !is_unicode($tmp)) {
printf("[007] Expecting Unicode error message!\n");
var_inspect($tmp);
}