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 @@ -154,7 +154,7 @@ public function keepCommentsInOutput(): void
154
154
*/
155
155
public function stripCommentsFromOutput (): void
156
156
{
157
- $ oCss = TestsParserTest::parsedStructureForFile ('comments ' );
157
+ $ css = TestsParserTest::parsedStructureForFile ('comments ' );
158
158
self ::assertSame ('
159
159
@import url("some/url.css") screen;
160
160
@@ -167,12 +167,12 @@ public function stripCommentsFromOutput(): void
167
167
position: absolute;
168
168
}
169
169
}
170
- ' , $ oCss ->render (OutputFormat::createPretty ()->setRenderComments (false )));
170
+ ' , $ css ->render (OutputFormat::createPretty ()->setRenderComments (false )));
171
171
self ::assertSame (
172
172
'@import url("some/url.css") screen; '
173
173
. '.foo,#bar{background-color:#000;} '
174
174
. '@media screen{#foo.bar{position:absolute;}} ' ,
175
- $ oCss ->render (OutputFormat::createCompact ())
175
+ $ css ->render (OutputFormat::createCompact ())
176
176
);
177
177
}
178
178
}
You can’t perform that action at this time.
0 commit comments