Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 2, 2024
1 parent b1b6266 commit 2f31b9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/framework/tests/Unit/HeadingRendererUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function testPostProcessTrimsWhitespaceAndIndentationFromLines()
public function testPostProcessHandlesEmptyString()
{
$renderer = new HeadingRenderer();
$html = "";
$html = '';
$processedHtml = $renderer->postProcess($html);

$this->assertSame('', $processedHtml);
Expand All @@ -240,7 +240,7 @@ public function testPostProcessHandlesEmptyString()
public function testPostProcessHandlesNoHeadingTags()
{
$renderer = new HeadingRenderer();
$html = "<p>Paragraph</p>";
$html = '<p>Paragraph</p>';
$processedHtml = $renderer->postProcess($html);

$this->assertSame('<p>Paragraph</p>', $processedHtml);
Expand Down

0 comments on commit 2f31b9b

Please sign in to comment.