aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Shared.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests/Shared.hs')
-rw-r--r--test/Tests/Shared.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Shared.hs b/test/Tests/Shared.hs
index e415ea153..287c3a61b 100644
--- a/test/Tests/Shared.hs
+++ b/test/Tests/Shared.hs
@@ -16,7 +16,7 @@ import System.FilePath.Posix (joinPath)
import Test.Tasty
import Test.Tasty.HUnit (assertBool, testCase, (@?=))
import Text.Pandoc.Arbitrary ()
-import Text.Pandoc.Builder
+import Text.Pandoc.Builder as B
import Text.Pandoc.Shared
import Text.Pandoc.Writers.Shared (toLegacyTable)
@@ -58,7 +58,7 @@ testLegacyTable =
, testCase "decomposes a table without head" $ gen2 @?= expect2
]
where
- pln = toList . plain . str
+ pln = B.toList . plain . str
cl a h w = Cell ("", [], []) AlignDefault h w $ pln a
rws = map $ Row nullAttr
th = TableHead nullAttr . rws