From: Marcus Boerger Date: Thu, 7 Nov 2002 23:03:58 +0000 (+0000) Subject: expand test: see if another insert fails X-Git-Tag: php-4.3.0RC1~195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78857eb9d4bc2876d3bca3695218a09a48f6644c;p=php expand test: see if another insert fails --- 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;