Skip to content

Commit 44a7d75

Browse files
committed
Move the LFs to the end of the lines
1 parent 60c0b42 commit 44a7d75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ParserTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,9 @@ public function comments(): void
571571
{
572572
$document = self::parsedStructureForFile('comments');
573573

574-
$expected = '@import url("some/url.css") screen;'
575-
. "\n.foo, #bar {background-color: #000;}"
576-
. "\n@media screen {#foo.bar {position: absolute;}}";
574+
$expected = "@import url(\"some/url.css\") screen;\n"
575+
. ".foo, #bar {background-color: #000;}\n"
576+
. '@media screen {#foo.bar {position: absolute;}}';
577577
self::assertSame($expected, $document->render());
578578
}
579579

0 commit comments

Comments
 (0)