Skip to content

Commit

Permalink
Merge pull request #8 from kwattro/dev
Browse files Browse the repository at this point in the history
fixed expected header string
  • Loading branch information
ikwattro committed Aug 6, 2014
2 parents 70051bf + 93a3395 commit 4f462db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Markdown/Syntax/HeadersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function testIsNotHeader()
$md = $this->getMarkdown();
$text = '#Level';
$markdown = $md->render($text);
$expected = '#Level'."\n";
$expected = '<h1>Level</h1>'."\n";
$this->assertEquals($expected, $markdown);
}

Expand Down

0 comments on commit 4f462db

Please sign in to comment.