summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-12-03 23:25:27 +0000
committerFelipe Pena <felipe@php.net>2010-12-03 23:25:27 +0000
commit11a3a52fc8e0483a0676cb29b81eb499301fc7a0 (patch)
treeea87e2d481898c4db9fa264a2de2687a45c1abf1 /ext
parent955ebdf10c1c42ef5c41dd69d062a4a27e33f8bd (diff)
downloadphp-git-11a3a52fc8e0483a0676cb29b81eb499301fc7a0.tar.gz
- Fixed test
Diffstat (limited to 'ext')
-rw-r--r--ext/pdo/tests/pdo_021.phpt2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/pdo/tests/pdo_021.phpt b/ext/pdo/tests/pdo_021.phpt
index 688bd4a618..fb25fc52bc 100644
--- a/ext/pdo/tests/pdo_021.phpt
+++ b/ext/pdo/tests/pdo_021.phpt
@@ -41,8 +41,6 @@ $select->execute();
$num = $select->fetchColumn();
echo 'There are ' . $num . " rows in the table.\n";
-$select->closeCursor();
-
// Insert using named parameters
$stmt2 = $db->prepare("INSERT INTO test VALUES(:first, :second, :third)");
foreach ($data as $row) {