diff options
author | Steph Fox <sfox@php.net> | 2008-05-26 23:36:10 +0000 |
---|---|---|
committer | Steph Fox <sfox@php.net> | 2008-05-26 23:36:10 +0000 |
commit | 833f4150a1b803ad36d4c5bf97561d7958538aec (patch) | |
tree | ce0ec413cea57a86cec658c3317d60a69f8adf1a /ext/standard/tests/array/array_intersect_basic.phpt | |
parent | 10c04aca384b8bc31412d36f05ba29f11192a082 (diff) | |
download | php-git-833f4150a1b803ad36d4c5bf97561d7958538aec.tar.gz |
- killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
Diffstat (limited to 'ext/standard/tests/array/array_intersect_basic.phpt')
-rw-r--r-- | ext/standard/tests/array/array_intersect_basic.phpt | 41 |
1 files changed, 1 insertions, 40 deletions
diff --git a/ext/standard/tests/array/array_intersect_basic.phpt b/ext/standard/tests/array/array_intersect_basic.phpt index 3018b39e7a..4b7306a86b 100644 --- a/ext/standard/tests/array/array_intersect_basic.phpt +++ b/ext/standard/tests/array/array_intersect_basic.phpt @@ -39,46 +39,7 @@ var_dump( array_intersect($arr_associative, $arr_default_keys, $arr3, $arr_assoc echo "Done"; ?> ---EXPECTF-- -*** Testing array_intersect() : basic functionality *** -array(4) { - [0]=> - int(1) - [1]=> - int(2) - [2]=> - string(5) "hello" - [3]=> - string(5) "world" -} -array(2) { - [0]=> - int(1) - [1]=> - int(2) -} -array(2) { - ["one"]=> - int(1) - ["two"]=> - int(2) -} -array(2) { - ["one"]=> - int(1) - ["two"]=> - int(2) -} -array(1) { - [1]=> - int(2) -} -array(1) { - ["two"]=> - int(2) -} -Done ---UEXPECTF-- +--EXPECT-- *** Testing array_intersect() : basic functionality *** array(4) { [0]=> |