Skip to content

Commit

Permalink
Fix Test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel committed Nov 18, 2023
1 parent 7ff49f5 commit fd71733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Renderer/Block/ListBlockRendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function it_renders_ordered_list_block(): void

// Assert
$this->assertIsString($result);
$this->assertEquals("1. List Item Value\n", $result);
$this->assertEquals("1. List Item Value\n \n", $result);
}

#[Test]
Expand Down Expand Up @@ -85,6 +85,6 @@ public function it_renders_unordered_list_block(): void
$result = $this->renderer->render($block, $childRenderer);

$this->assertIsString($result);
$this->assertEquals("- List Item Value\n", $result);
$this->assertEquals("- List Item Value\n \n", $result);
}
}

0 comments on commit fd71733

Please sign in to comment.