diff options
author | Marcus Boerger <helly@php.net> | 2002-11-01 14:21:36 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-01 14:21:36 +0000 |
commit | d50e62cbacc55a4348aac04e77e5f2946218133f (patch) | |
tree | 59c6fbcc43ad15a793f013a06d8e729f5ea60b07 /ext/dba/tests/dba004.phpt | |
parent | 5ab8fb4df142686cda5126b9655bca9187a88293 (diff) | |
download | php-git-d50e62cbacc55a4348aac04e77e5f2946218133f.tar.gz |
Always show handler used
Diffstat (limited to 'ext/dba/tests/dba004.phpt')
-rw-r--r-- | ext/dba/tests/dba004.phpt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/dba/tests/dba004.phpt b/ext/dba/tests/dba004.phpt index 9259a78d57..5403ae0033 100644 --- a/ext/dba/tests/dba004.phpt +++ b/ext/dba/tests/dba004.phpt @@ -7,6 +7,7 @@ DBA Multiple Insert/Fetch Test --FILE-- <?php require_once('test.inc'); + echo "database handler: $handler\n"; if (($db_file=dba_open($db_file, "n", $handler))!==FALSE) { dba_insert("key1", "Content String 1", $db_file); dba_insert("key2", "Content String 2", $db_file); @@ -21,5 +22,6 @@ DBA Multiple Insert/Fetch Test echo "Error creating database\n"; } ?> ---EXPECT-- +--EXPECTF-- +database handler: %s Another Content String Content String 2 |