diff options
author | Jani Taskinen <jani@php.net> | 2007-11-02 19:41:12 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-11-02 19:41:12 +0000 |
commit | a541bb80788100606c59bf5a67478234a2045a6a (patch) | |
tree | c782839faa71f4f23368c3efba128d89a723edac /Zend/tests/bug36214.phpt | |
parent | b48925117750da2a7fb7cff629e3852d13917f2f (diff) | |
download | php-git-a541bb80788100606c59bf5a67478234a2045a6a.tar.gz |
- Fix tests
- Update README.PARAMETER_PARSING_API
Diffstat (limited to 'Zend/tests/bug36214.phpt')
-rwxr-xr-x | Zend/tests/bug36214.phpt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Zend/tests/bug36214.phpt b/Zend/tests/bug36214.phpt index f3e9904e19..630773713a 100755 --- a/Zend/tests/bug36214.phpt +++ b/Zend/tests/bug36214.phpt @@ -33,7 +33,7 @@ $ctx->comment_preview[0] = 1; $ctx->comment_preview[1] = 2; var_dump($ctx->comment_preview); ?> ---EXPECT-- +--EXPECTF-- array(2) { [0]=> int(1) @@ -46,9 +46,12 @@ array(2) { [1]=> int(2) } -object(ArrayObject)#2 (2) { - [0]=> - int(1) - [1]=> - int(2) +object(ArrayObject)#%d (1) { + ["storage":"ArrayObject":private]=> + array(2) { + [0]=> + int(1) + [1]=> + int(2) + } } |