From 9fab1b90abfe9a2b25e4b1c88a232746c7a66031 Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Fri, 25 Sep 2020 02:43:44 +0100 Subject: [PATCH] Drop ZPP check in PDO MySQLi test This test is marked as XFAIL so it doesn't get looked at. It checks that the method is called without arguments which is a ZPP concern --- ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt b/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt index c8f188a738..eac4b9e4d8 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt @@ -33,10 +33,6 @@ if (!MySQLPDOTest::isPDOMySQLnd()) if (false !== ($tmp = $stmt->nextRowSet())) printf("[002] Expecting false got %s\n", var_export($tmp, true)); - // TODO: should give a warning, but its PDO, let's ignore the missing warning for now - if (false !== ($tmp = $stmt->nextRowSet(1))) - printf("[003] Expecting false got %s\n", var_export($tmp, true)); - function test_proc1($db) { $stmt = $db->query('SELECT @VERSION as _version'); -- 2.40.0