diff options
| author | Marcus Boerger <helly@php.net> | 2007-10-18 04:51:53 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2007-10-18 04:51:53 +0000 |
| commit | efc78b635b826481f2848e65430b7e9fd7b80bd2 (patch) | |
| tree | 04b53131dca3f1fe8f6bd8b76394648409877f73 | |
| parent | 017fa36d3f44461b980b8e36fdf80fd3c0b289b1 (diff) | |
| download | php-git-efc78b635b826481f2848e65430b7e9fd7b80bd2.tar.gz | |
- Fix test expectation
| -rw-r--r-- | ext/spl/tests/bug41692.phpt | 52 |
1 files 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 |
