Commit 26cbea9e authored by Zac Bergquist's avatar Zac Bergquist

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.
parent f7fcd744
...@@ -106,9 +106,9 @@ func TestMarkdownStaticGen(t *testing.T) { ...@@ -106,9 +106,9 @@ func TestMarkdownStaticGen(t *testing.T) {
</body> </body>
</html> </html>
`) `)
// TODO: html contains Windows line endings, expectedBody doesn't...
if !bytes.Equal(html, expectedBody) { 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) fp := filepath.Join(c.Root, markdown.DefaultStaticDir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment