aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Readers/HTML.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Readers/HTML.hs b/test/Tests/Readers/HTML.hs
index 72f90cabd..1f7f2f970 100644
--- a/test/Tests/Readers/HTML.hs
+++ b/test/Tests/Readers/HTML.hs
@@ -30,9 +30,9 @@ removeRawInlines :: Inline -> Inline
removeRawInlines RawInline{} = Str "raw inline was here"
removeRawInlines x = x
-roundTrip :: Block -> Bool
+roundTrip :: Blocks -> Bool
roundTrip b = d'' == d'''
- where d = walk removeRawInlines $ walk makeRoundTrip $ Pandoc nullMeta [b]
+ where d = walk removeRawInlines $ walk makeRoundTrip $ Pandoc nullMeta $ toList b
d' = rewrite d
d'' = rewrite d'
d''' = rewrite d''