1
0
mirror of https://github.com/php/php-src.git synced 2026-04-04 22:52:40 +02:00

One more time fixing the tests, lets use $IS_MYSQLND which comes from connect.inc

This commit is contained in:
Andrey Hristov
2010-05-11 15:55:07 +00:00
parent cab261ea16
commit 70b6fd2ae4
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
if (!stristr(mysqli_get_client_info(), 'mysqlnd')) {
if (!$IS_MYSQLND) {
die("skip: test applies only to mysqlnd");
}

View File

@@ -6,7 +6,7 @@ require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
if (!stristr(mysqli_get_client_info(), 'mysqlnd')) {
if (!$IS_MYSQLND) {
die("skip: test applies only to mysqlnd");
}