Skip to content

Commit 43b0247

Browse files
authored
[TASK] Avoid Hungarian notation in a TestCase (#666)
1 parent 0bf5fe9 commit 43b0247

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
@@ -153,7 +153,7 @@ public function keepCommentsInOutput(): void
153153
*/
154154
public function stripCommentsFromOutput(): void
155155
{
156-
$oCss = TestsParserTest::parsedStructureForFile('comments');
156+
$css = TestsParserTest::parsedStructureForFile('comments');
157157
self::assertSame('
158158
@import url("some/url.css") screen;
159159
@@ -166,12 +166,12 @@ public function stripCommentsFromOutput(): void
166166
position: absolute;
167167
}
168168
}
169-
', $oCss->render(OutputFormat::createPretty()->setRenderComments(false)));
169+
', $css->render(OutputFormat::createPretty()->setRenderComments(false)));
170170
self::assertSame(
171171
'@import url("some/url.css") screen;'
172172
. '.foo,#bar{background-color:#000;}'
173173
. '@media screen{#foo.bar{position:absolute;}}',
174-
$oCss->render(OutputFormat::createCompact())
174+
$css->render(OutputFormat::createCompact())
175175
);
176176
}
177177
}

0 commit comments

Comments
 (0)