Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel committed Aug 1, 2023
1 parent 89786c4 commit e8d423a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Renderer/MarkdownRendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ public function it_parses_kitchen_sink_and_parsing_the_result_again_returns_the_
$document = $this->parser->parse($contentKitchenSink);

$result = $this->renderer->renderDocument($document)->getContent();
// $this->assertEquals($contentKitchenSinkExpected, $result);
$this->assertEquals($contentKitchenSinkExpected, $result);

// Take the result and parse it again
$document = $this->parser->parse($result);
$result = $this->renderer->renderDocument($document)->getContent();
$this->assertEquals($contentKitchenSinkExpected, $result);
Expand Down

0 comments on commit e8d423a

Please sign in to comment.