Skip to content

Commit 60a0a0f

Browse files
committed
[TASK] Avoid Hungarian notation in a testcase
1 parent 5a25712 commit 60a0a0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Comment/CommentTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public function keepCommentsInOutput(): void
154154
*/
155155
public function stripCommentsFromOutput(): void
156156
{
157-
$oCss = TestsParserTest::parsedStructureForFile('comments');
157+
$css = TestsParserTest::parsedStructureForFile('comments');
158158
self::assertSame('
159159
@import url("some/url.css") screen;
160160
@@ -167,12 +167,12 @@ public function stripCommentsFromOutput(): void
167167
position: absolute;
168168
}
169169
}
170-
', $oCss->render(OutputFormat::createPretty()->setRenderComments(false)));
170+
', $css->render(OutputFormat::createPretty()->setRenderComments(false)));
171171
self::assertSame(
172172
'@import url("some/url.css") screen;'
173173
. '.foo,#bar{background-color:#000;}'
174174
. '@media screen{#foo.bar{position:absolute;}}',
175-
$oCss->render(OutputFormat::createCompact())
175+
$css->render(OutputFormat::createCompact())
176176
);
177177
}
178178
}

0 commit comments

Comments
 (0)