diff options
Diffstat (limited to 'ext/pdo_firebird')
-rw-r--r-- | ext/pdo_firebird/tests/bug_72931.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_firebird/tests/bug_72931.phpt b/ext/pdo_firebird/tests/bug_72931.phpt index ecbde6a109..4f8a1a1746 100644 --- a/ext/pdo_firebird/tests/bug_72931.phpt +++ b/ext/pdo_firebird/tests/bug_72931.phpt @@ -10,7 +10,7 @@ $C->exec('create table tablea (id integer)'); $S = $C->prepare('insert into tablea (id) values (1) returning id'); $S->execute(); $D = $S->fetch(PDO::FETCH_NUM); -echo $D[0][0]; +echo $D[0]; unset($S); unset($C); ?> @@ -18,7 +18,7 @@ unset($C); <?php require 'testdb.inc'; $C = new PDO('firebird:dbname='.$test_base, $user, $password) or die; -$C->exec('DROP table tablea'); +$C->exec('drop table tablea'); ?> --EXPECT-- 1 |