Re-enable test

I had commented out this check just to make sure the rest of the test cases were succeeding and forgot to add it back in.
This commit is contained in:
Zac Bergquist 2015-10-13 20:23:05 -04:00
parent f7fcd7447a
commit 26cbea9e12

View file

@ -106,9 +106,9 @@ func TestMarkdownStaticGen(t *testing.T) {
</body>
</html>
`)
// TODO: html contains Windows line endings, expectedBody doesn't...
if !bytes.Equal(html, expectedBody) {
//t.Fatalf("Expected file content: %s got: %s", string(expectedBody), string(html))
t.Fatalf("Expected file content: %s got: %s", string(expectedBody), string(html))
}
fp := filepath.Join(c.Root, markdown.DefaultStaticDir)