summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-19 20:05:39 +0000
committerMarcus Boerger <helly@php.net>2004-03-19 20:05:39 +0000
commitdd5d497541f70d671a40c08a53cfa298986ae8db (patch)
tree4462c7b03f978056ead89deb88331b4c2643f21d
parentedde87290483e2f220d7c5a444252f2b269464c9 (diff)
downloadphp-git-dd5d497541f70d671a40c08a53cfa298986ae8db.tar.gz
Fix test
# removing string conversion was a stupid idea
-rwxr-xr-xext/sqlite/tests/sqlite_oo_031.phpt2
1 files changed, 1 insertions, 1 deletions
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()