1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/dba/tests/dba_db4_018.phpt: fix typo (#20938)

We expect "objects" but print "object".

Gentoo-bug: https://bugs.gentoo.org/968656
This commit is contained in:
Michael Orlitzky
2026-01-24 06:38:45 -05:00
committed by GitHub
parent 62afc7a2fa
commit 3053a039ff

View File

@@ -28,7 +28,7 @@ $db_file2 = dba_popen($db_filename, 'n', 'flatfile');
if ($db_file1 === $db_file2) {
echo "objects are the same\n";
} else {
echo "object are different\n";
echo "objects are different\n";
}