From 25cdbd55fc7e6764df9e3898709c915c69a939e1 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 14 Jan 2026 12:11:35 -0500 Subject: [PATCH] ext/dba/tests/dba_db4_018.phpt: fix typo We expect "objects" but print "object". Gentoo-bug: https://bugs.gentoo.org/968656 --- ext/dba/tests/dba_db4_018.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dba/tests/dba_db4_018.phpt b/ext/dba/tests/dba_db4_018.phpt index bfe476aae0d13..11c441fb4bff1 100644 --- a/ext/dba/tests/dba_db4_018.phpt +++ b/ext/dba/tests/dba_db4_018.phpt @@ -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"; }