diff options
-rw-r--r-- | ext/db/tests/003.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/db/tests/003.phpt b/ext/db/tests/003.phpt index d2351e24a5..6d3f7d3611 100644 --- a/ext/db/tests/003.phpt +++ b/ext/db/tests/003.phpt @@ -8,6 +8,7 @@ DBM Insert/Replace/Fetch Test if (dbmopen($db_file, "n")) { dbminsert($db_file, "key1", "This is a test insert"); dbmreplace($db_file, "key1", "This is the replacement text"); + @dbminsert($db_file, "key1", "This is another replacement text?"); $a = dbmfetch($db_file, "key1"); dbmclose($db_file); echo $a; |