diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-06-26 16:07:45 +0300 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-26 15:07:45 +0200 |
commit | fa515e46f36fa3e73b26b89b721a2de1738cf4e3 (patch) | |
tree | a6d5d8a3119720901ee4f6aa44d8c0a93b5388cc /test/Tests/Writers | |
parent | b2fe009d8fee618cbcd837976b6f2dea7c0a9837 (diff) | |
download | pandoc-fa515e46f36fa3e73b26b89b721a2de1738cf4e3.tar.gz |
Muse writer: fix hlint errors (#3764)
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r-- | test/Tests/Writers/Muse.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs index 63fdd293c..d83cc5c9b 100644 --- a/test/Tests/Writers/Muse.hs +++ b/test/Tests/Writers/Muse.hs @@ -31,14 +31,14 @@ tests = [ testGroup "block elements" , "Second paragraph." ] ] - , "line block" =: lineBlock ([text "Foo", text "bar", text "baz"]) + , "line block" =: lineBlock [text "Foo", text "bar", text "baz"] =?> unlines [ "<verse>" , "Foo" , "bar" , "baz" , "</verse>" ] - , "code block" =: codeBlock ("int main(void) {\n\treturn 0;\n}") + , "code block" =: codeBlock "int main(void) {\n\treturn 0;\n}" =?> unlines [ "<example>" , "int main(void) {" , "\treturn 0;" |