summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2007-10-18 04:51:53 +0000
committerMarcus Boerger <helly@php.net>2007-10-18 04:51:53 +0000
commitefc78b635b826481f2848e65430b7e9fd7b80bd2 (patch)
tree04b53131dca3f1fe8f6bd8b76394648409877f73 /ext/spl
parent017fa36d3f44461b980b8e36fdf80fd3c0b289b1 (diff)
downloadphp-git-efc78b635b826481f2848e65430b7e9fd7b80bd2.tar.gz
- Fix test expectation
Diffstat (limited to 'ext/spl')
-rw-r--r--ext/spl/tests/bug41692.phpt52
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