aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests/Writers
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Tests/Writers')
-rw-r--r--tests/Tests/Writers/ConTeXt.hs19
1 files changed, 10 insertions, 9 deletions
diff --git a/tests/Tests/Writers/ConTeXt.hs b/tests/Tests/Writers/ConTeXt.hs
index 2cb8ececa..68e32cf58 100644
--- a/tests/Tests/Writers/ConTeXt.hs
+++ b/tests/Tests/Writers/ConTeXt.hs
@@ -46,19 +46,20 @@ tests = [ testGroup "inline code"
]
, testGroup "bullet lists"
[ "nested" =:
- bulletList [plain (text "top")
- ,bulletList [plain (text "next")
- ,bulletList [plain (text "bot")]]]
- =?> [_LIT|
-\startitemize
+ bulletList [
+ plain (text "top")
+ <> bulletList [
+ plain (text "next")
+ <> bulletList [plain (text "bot")]
+ ]
+ ] =?> [_LIT|
+\startitemize[packed]
\item
top
-\item
- \startitemize
+ \startitemize[packed]
\item
next
- \item
- \startitemize
+ \startitemize[packed]
\item
bot
\stopitemize