From efc78b635b826481f2848e65430b7e9fd7b80bd2 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 18 Oct 2007 04:51:53 +0000 Subject: [PATCH] - Fix test expectation --- ext/spl/tests/bug41692.phpt | 52 +++++++++++++++++++++++++++---------- 1 file changed, 38 insertions(+), 14 deletions(-) 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 -- 2.50.1