summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird/tests
diff options
context:
space:
mode:
authorMatteo Beccati <mbeccati@php.net>2013-05-31 16:19:58 +0200
committerMatteo Beccati <mbeccati@php.net>2013-05-31 16:19:58 +0200
commit510498947ee350a7c60c576bb17911fd2d2880c8 (patch)
tree78518ba7d752a073a1b04a2c0da8ece8fe317e35 /ext/pdo_firebird/tests
parentdf6ca450ce1bebb7a36c0d2eecb51a28ac2f5118 (diff)
downloadphp-git-510498947ee350a7c60c576bb17911fd2d2880c8.tar.gz
Slightly edited tests and fix for bug #62024
Diffstat (limited to 'ext/pdo_firebird/tests')
-rw-r--r--ext/pdo_firebird/tests/bug_62024.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_firebird/tests/bug_62024.phpt b/ext/pdo_firebird/tests/bug_62024.phpt
index 3daef68511..e046879c22 100644
--- a/ext/pdo_firebird/tests/bug_62024.phpt
+++ b/ext/pdo_firebird/tests/bug_62024.phpt
@@ -21,8 +21,8 @@ $dbh->commit();
$sql = "insert into test_insert (id, text) values (?, ?)";
$sttmt = $dbh->prepare($sql);
-$args_ok = [1, "test1"];
-$args_err = [2, null];
+$args_ok = array(1, "test1");
+$args_err = array(2, null);
$res = $sttmt->execute($args_ok);
var_dump($res);