summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-09-25 02:43:44 +0100
committerGeorge Peter Banyard <girgias@php.net>2020-09-28 18:51:35 +0100
commit9fab1b90abfe9a2b25e4b1c88a232746c7a66031 (patch)
tree398495d0507d9464fdceef1ab1423d78589fe211
parentc3206c28d7bf637eaf340a36ef2fd21165e260f2 (diff)
downloadphp-git-9fab1b90abfe9a2b25e4b1c88a232746c7a66031.tar.gz
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
-rw-r--r--ext/pdo_mysql/tests/pdo_mysql_stmt_nextrowset.phpt4
1 files changed, 0 insertions, 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');