Fix tests

This commit is contained in:
William DURAND 2013-02-16 01:57:23 +01:00
parent 0894571d8f
commit 0443b6706c
2 changed files with 8 additions and 2 deletions

View file

@ -24,6 +24,12 @@ class YamlDataDumper extends AbstractDataDumper
*/
protected function transformArrayToData($data)
{
return Yaml::dump($data, 3);
return Yaml::dump(
$data,
$inline = 3,
$indent = 4,
$exceptionOnInvalidType = false,
$objectSupport = true
);
}
}

View file

@ -10,7 +10,7 @@
}],
"require": {
"symfony/symfony": "~2.2.0",
"propel/propel1": "~1.6.0"
"propel/propel1": "~1.6"
},
"require-dev": {
"sensio/framework-extra-bundle": "~2.2.0",