Skip to content

Commit f699c96

Browse files
committed
Fix broken test due to missing skipif.inc
1 parent 970d659 commit f699c96

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ext/mysqli/tests/mysqli_fetch_column_libmysql.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
--TEST--
22
mysqli_fetch_column()
3+
--EXTENSIONS--
4+
mysqli
35
--SKIPIF--
46
<?php
5-
require_once 'skipif.inc';
67
require_once 'skipifconnectfailure.inc';
78
if ($IS_MYSQLND) {
89
die("skip libmysql only test");

ext/mysqli/tests/mysqli_stmt_execute_bind.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ mysqli
55
--SKIPIF--
66
<?php
77
require_once 'skipifconnectfailure.inc';
8-
if (!stristr(mysqli_get_client_info(), 'mysqlnd')) {
9-
die("skip: only available in mysqlnd");
8+
if (!$IS_MYSQLND) {
9+
die("skip only available in mysqlnd");
1010
}
1111
?>
1212
--FILE--

0 commit comments

Comments
 (0)