Skip to content

Commit

Permalink
Update MarkdownTokenParserTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jason490 committed Nov 27, 2023
1 parent 98658bf commit b28e039
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Submitty/Twig/TokenParser/MarkdownTokenParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ public function testMarkdownPrepareBehavior()
// Assert Markdown output
$expectedOutput = "<h1>Title</h1>\n\n<p>paragraph</p>\n\n<pre><code>code\n</code></pre>\n";
$output = $this->getEngine()->transform($content);
$this->assertIsString($output,$expectedOutput);
$this->assertEquals($output, $this->getEngine()->transform($content));
echo $output;
// $this->assertIsString($output,$expectedOutput);
// $this->assertEquals($output, $this->getEngine()->transform($content));
}

/**
Expand Down

0 comments on commit b28e039

Please sign in to comment.