aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests')
-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")
]
]