File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/Symfony/Component/Yaml/Tests Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1711,22 +1711,23 @@ public function testBackslashInQuotedMultiLineString()
1711
1711
}
1712
1712
1713
1713
/**
1714
- * @dataProvider WrappedUnquotedStrings
1714
+ * @dataProvider wrappedUnquotedStringsProvider
1715
1715
*/
1716
1716
public function testWrappedUnquotedStringWithMultipleSpacesInValue (string $ yaml , array $ expected )
1717
1717
{
1718
1718
$ this ->assertSame ($ expected , $ this ->parser ->parse ($ yaml ));
1719
1719
}
1720
- public static function WrappedUnquotedStrings () {
1720
+
1721
+ public static function wrappedUnquotedStringsProvider () {
1721
1722
return [
1722
- 'CurlyBraces ' => [
1723
+ 'mapping ' => [
1723
1724
'{ foo: bar bar, fiz: cat cat } ' ,
1724
1725
[
1725
1726
'foo ' => 'bar bar ' ,
1726
1727
'fiz ' => 'cat cat ' ,
1727
1728
]
1728
1729
],
1729
- 'SquareBraces ' => [
1730
+ 'sequence ' => [
1730
1731
'[ bar bar, cat cat ] ' ,
1731
1732
[
1732
1733
'bar bar ' ,
You can’t perform that action at this time.
0 commit comments