diff options
author | Marcus Boerger <helly@php.net> | 2004-03-19 20:05:39 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-19 20:05:39 +0000 |
commit | dd5d497541f70d671a40c08a53cfa298986ae8db (patch) | |
tree | 4462c7b03f978056ead89deb88331b4c2643f21d /ext/sqlite/tests | |
parent | edde87290483e2f220d7c5a444252f2b269464c9 (diff) | |
download | php-git-dd5d497541f70d671a40c08a53cfa298986ae8db.tar.gz |
Fix test
# removing string conversion was a stupid idea
Diffstat (limited to 'ext/sqlite/tests')
-rwxr-xr-x | ext/sqlite/tests/sqlite_oo_031.phpt | 2 |
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() |