diff options
author | Yan Pas <yanp.bugz@gmail.com> | 2018-05-09 20:40:37 +0300 |
---|---|---|
committer | Yan Pas <yanp.bugz@gmail.com> | 2018-05-09 20:40:37 +0300 |
commit | ad19166bc308a2428bd040851a2a97c76e8873f9 (patch) | |
tree | d28996388e36580e85593c82e80c78acea0bed7b /test/Tests | |
parent | a337685fe0ab9c63b9456f27787bbe4f0d785a94 (diff) | |
download | pandoc-ad19166bc308a2428bd040851a2a97c76e8873f9.tar.gz |
fix build and tests
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/Man.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Tests/Readers/Man.hs b/test/Tests/Readers/Man.hs index 007935be1..a9fe324d1 100644 --- a/test/Tests/Readers/Man.hs +++ b/test/Tests/Readers/Man.hs @@ -1,6 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} module Tests.Readers.Man (tests) where +import Prelude import Data.Text (Text) import Test.Tasty import Tests.Helpers @@ -23,9 +24,9 @@ tests = [ testGroup "Macros" [ "Bold" =: ".B foo\n" - =?> strong "foo" + =?> (para $ strong "foo") , "Italic" =: ".I foo\n" - =?> emph "foo" + =?> (para $ emph "foo") ] ] |