diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2019-10-04 18:28:53 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2019-10-04 18:28:53 +0300 |
commit | 6a9cafc67ab57c9ea6fa342a1763eaa99e9e36b3 (patch) | |
tree | 717db4310da3b03347623b42261d077dcd3b7fce | |
parent | 701ae8634eb51331dcc354b58a437cd79bcaaf8c (diff) | |
download | pandoc-6a9cafc67ab57c9ea6fa342a1763eaa99e9e36b3.tar.gz |
hlint Muse reader tests
-rw-r--r-- | test/Tests/Readers/Muse.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs index 87495eba1..0ca94de98 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -294,7 +294,7 @@ tests = para (link "https://amusewiki.org/" "" (text "foo[1")) , "Image inside link" =: "[[https://amusewiki.org/][Image [[image.png][with it's own description]] inside link description]]" =?> - para (link "https://amusewiki.org/" "" (text "Image " <> (image "image.png" "" (text "with it's own description")) <> text " inside link description")) + para (link "https://amusewiki.org/" "" (text "Image " <> image "image.png" "" (text "with it's own description") <> text " inside link description")) , "Link inside image description" =: "[[image.jpg][Image from [[https://amusewiki.org/]]]]" =?> para (image "image.jpg" "" (text "Image from " <> link "https://amusewiki.org/" "" (str "https://amusewiki.org/"))) |