mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
fix test
This commit is contained in:
@@ -46,10 +46,10 @@ class CrLfNormalizerTest extends \PhraseanetTestCase
|
|||||||
public function provideStringsForCrLfNormalize()
|
public function provideStringsForCrLfNormalize()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
['ABC\rDEF', 'ABC\nDEF'],
|
["ABC\rDEF", "ABC\nDEF"],
|
||||||
['ABC\nDEF', 'ABC\nDEF'],
|
["ABC\nDEF", "ABC\nDEF"],
|
||||||
['ABC\r\nDEF', 'ABC\nDEF'],
|
["ABC\r\nDEF", "ABC\nDEF"],
|
||||||
['ABC\n\rDEF', 'ABC\n\nDEF'],
|
["ABC\n\rDEF", "ABC\n\nDEF"],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user