File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ public function keepCommentsInOutput(): void
153
153
*/
154
154
public function stripCommentsFromOutput (): void
155
155
{
156
- $ oCss = TestsParserTest::parsedStructureForFile ('comments ' );
156
+ $ css = TestsParserTest::parsedStructureForFile ('comments ' );
157
157
self ::assertSame ('
158
158
@import url("some/url.css") screen;
159
159
@@ -166,12 +166,12 @@ public function stripCommentsFromOutput(): void
166
166
position: absolute;
167
167
}
168
168
}
169
- ' , $ oCss ->render (OutputFormat::createPretty ()->setRenderComments (false )));
169
+ ' , $ css ->render (OutputFormat::createPretty ()->setRenderComments (false )));
170
170
self ::assertSame (
171
171
'@import url("some/url.css") screen; '
172
172
. '.foo,#bar{background-color:#000;} '
173
173
. '@media screen{#foo.bar{position:absolute;}} ' ,
174
- $ oCss ->render (OutputFormat::createCompact ())
174
+ $ css ->render (OutputFormat::createCompact ())
175
175
);
176
176
}
177
177
}
You can’t perform that action at this time.
0 commit comments