We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c0b42 commit 44a7d75Copy full SHA for 44a7d75
tests/ParserTest.php
@@ -571,9 +571,9 @@ public function comments(): void
571
{
572
$document = self::parsedStructureForFile('comments');
573
574
- $expected = '@import url("some/url.css") screen;'
575
- . "\n.foo, #bar {background-color: #000;}"
576
- . "\n@media screen {#foo.bar {position: absolute;}}";
+ $expected = "@import url(\"some/url.css\") screen;\n"
+ . ".foo, #bar {background-color: #000;}\n"
+ . '@media screen {#foo.bar {position: absolute;}}';
577
self::assertSame($expected, $document->render());
578
}
579
0 commit comments