From dd5d497541f70d671a40c08a53cfa298986ae8db Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 19 Mar 2004 20:05:39 +0000 Subject: [PATCH] Fix test # removing string conversion was a stupid idea --- ext/sqlite/tests/sqlite_oo_031.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/sqlite/tests/sqlite_oo_031.phpt b/ext/sqlite/tests/sqlite_oo_031.phpt index 80a2138cbf..6a340c011d 100755 --- a/ext/sqlite/tests/sqlite_oo_031.phpt +++ b/ext/sqlite/tests/sqlite_oo_031.phpt @@ -77,7 +77,7 @@ class SqliteNestedset implements RecursiveIterator function current() { - return (string)$this->entry; + return $this->entry->__toString(); } function key() -- 2.40.0