diff options
Diffstat (limited to 'ext/sqlite3/tests')
-rw-r--r-- | ext/sqlite3/tests/bug66550.phpt | 2 | ||||
-rw-r--r-- | ext/sqlite3/tests/bug73333.phpt | 2 | ||||
-rw-r--r-- | ext/sqlite3/tests/bug76665.phpt | 2 | ||||
-rw-r--r-- | ext/sqlite3/tests/sqlite3_bind_bug68849.phpt | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/ext/sqlite3/tests/bug66550.phpt b/ext/sqlite3/tests/bug66550.phpt index a44515b0d9..de7aae1493 100644 --- a/ext/sqlite3/tests/bug66550.phpt +++ b/ext/sqlite3/tests/bug66550.phpt @@ -17,7 +17,5 @@ $db->close(); // Access the sqlite3_stmt object via the php_sqlite3_stmt container $stmt->reset(); ?> -==DONE== --EXPECTF-- Warning: SQLite3Stmt::reset(): The SQLite3 object has not been correctly initialised in %s -==DONE== diff --git a/ext/sqlite3/tests/bug73333.phpt b/ext/sqlite3/tests/bug73333.phpt index 8634b67f76..f9521209e8 100644 --- a/ext/sqlite3/tests/bug73333.phpt +++ b/ext/sqlite3/tests/bug73333.phpt @@ -19,8 +19,6 @@ while (($row = $res->fetchArray(SQLITE3_NUM)) !== false) { echo gettype($row[0]), PHP_EOL; } ?> -===DONE=== --EXPECT-- integer integer -===DONE=== diff --git a/ext/sqlite3/tests/bug76665.phpt b/ext/sqlite3/tests/bug76665.phpt index 0e1de136f7..f56f358bae 100644 --- a/ext/sqlite3/tests/bug76665.phpt +++ b/ext/sqlite3/tests/bug76665.phpt @@ -13,7 +13,5 @@ $stmt->bindValue(':bar', 17, SQLITE3_FLOAT); $stmt->execute(); var_dump($db->querySingle("SELECT bar FROM foo LIMIT 1")); ?> -===DONE=== --EXPECT-- float(17) -===DONE=== diff --git a/ext/sqlite3/tests/sqlite3_bind_bug68849.phpt b/ext/sqlite3/tests/sqlite3_bind_bug68849.phpt index 7e4a4e8243..9b6e3ae29a 100644 --- a/ext/sqlite3/tests/sqlite3_bind_bug68849.phpt +++ b/ext/sqlite3/tests/sqlite3_bind_bug68849.phpt @@ -34,7 +34,6 @@ $r = $s->execute(); var_dump($r->fetchArray(SQLITE3_ASSOC)); ?> -==DONE== --EXPECT-- array(3) { ["a"]=> @@ -68,4 +67,3 @@ array(3) { ["c"]=> float(3.15) } -==DONE== |