From: Marcus Boerger Date: Thu, 18 Oct 2007 04:51:53 +0000 (+0000) Subject: - Fix test expectation X-Git-Tag: php-5.2.5RC1~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efc78b635b826481f2848e65430b7e9fd7b80bd2;p=php - Fix test expectation --- diff --git a/ext/spl/tests/bug41692.phpt b/ext/spl/tests/bug41692.phpt index 8a2b958fc1..c9b7d8d60f 100644 --- a/ext/spl/tests/bug41692.phpt +++ b/ext/spl/tests/bug41692.phpt @@ -21,20 +21,44 @@ var_dump($bar); echo "Done\n"; ?> --EXPECTF-- -object(Bar)#%d (3) { - [0]=> - int(1) - [1]=> - int(2) - [2]=> - int(3) +object(Bar)#%d (2) { + ["foo":"Bar":private]=> + array(3) { + [0]=> + int(1) + [1]=> + int(2) + [2]=> + int(3) + } + ["storage":"ArrayObject":private]=> + array(3) { + [0]=> + int(1) + [1]=> + int(2) + [2]=> + int(3) + } } -object(Bar)#%d (3) { - [0]=> - int(1) - [1]=> - int(2) - [2]=> - int(3) +object(Bar)#%d (2) { + ["foo":"Bar":private]=> + array(3) { + [0]=> + int(1) + [1]=> + int(2) + [2]=> + int(3) + } + ["storage":"ArrayObject":private]=> + array(3) { + [0]=> + int(1) + [1]=> + int(2) + [2]=> + int(3) + } } Done