--- File_CSV-1.0.0/tests/CSV/bug13332.phpt.orig 2012-01-29 20:07:14.000000000 +0100
+++ File_CSV-1.0.0/tests/CSV/bug13332.phpt 2012-01-29 20:07:19.000000000 +0100
@@ -19,34 +19,27 @@
$csv[] = $tmp;
}
-var_dump($csv);
+print_r($csv);
?>
--EXPECT--
-array(2) {
- [0]=>
- array(5) {
- [0]=>
- string(1) "1"
- [1]=>
- string(1) "2"
- [2]=>
- string(6) "Twenty"
- [3]=>
- string(35) "This is a test of a "quoted" value."
- [4]=>
- string(15) "There is no cow"
- }
- [1]=>
- array(5) {
- [0]=>
- string(1) "2"
- [1]=>
- string(1) "4"
- [2]=>
- string(5) "Forty"
- [3]=>
- string(37) "Another "quoted value", with a comma."
- [4]=>
- string(14) "There is a cow"
- }
-}
+Array
+(
+ [0] => Array
+ (
+ [0] => 1
+ [1] => 2
+ [2] => Twenty
+ [3] => This is a test of a "quoted" value.
+ [4] => There is no cow
+ )
+
+ [1] => Array
+ (
+ [0] => 2
+ [1] => 4
+ [2] => Forty
+ [3] => Another "quoted value", with a comma.
+ [4] => There is a cow
+ )
+
+)
--- package.xml.orig 2012-01-29 20:08:48.000000000 +0100
+++ package.xml 2012-01-29 20:09:06.000000000 +0100
@@ -127,7 +127,7 @@
-
+