Fix TitleBlock test

It seems like the implementation of the extension was rather sloppy and
didn't adhere to the style common to the rest of Blackfriday.
This commit is contained in:
Vytautas Šaltenis 2016-03-30 15:05:24 +03:00
parent a32ecdb83d
commit 6fe811b603
1 changed files with 2 additions and 2 deletions

View File

@ -1503,8 +1503,8 @@ func TestTitleBlock_EXTENSION_TITLEBLOCK(t *testing.T) {
"<h1 class=\"title\">" +
"Some title\n" +
"Another title line\n" +
"Yep, more here too\n" +
"</h1>",
"Yep, more here too" +
"</h1>\n",
}
doTestsBlock(t, tests, Titleblock)
}