aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Readers
diff options
context:
space:
mode:
authorYan Pas <yanp.bugz@gmail.com>2018-05-09 20:40:37 +0300
committerYan Pas <yanp.bugz@gmail.com>2018-05-09 20:40:37 +0300
commitad19166bc308a2428bd040851a2a97c76e8873f9 (patch)
treed28996388e36580e85593c82e80c78acea0bed7b /test/Tests/Readers
parenta337685fe0ab9c63b9456f27787bbe4f0d785a94 (diff)
downloadpandoc-ad19166bc308a2428bd040851a2a97c76e8873f9.tar.gz
fix build and tests
Diffstat (limited to 'test/Tests/Readers')
-rw-r--r--test/Tests/Readers/Man.hs5
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")
]
]