From b7ba08db5fd951a4111a7be5e548877fdc4e9fbb Mon Sep 17 00:00:00 2001 From: HugoGranstrom <5092565+HugoGranstrom@users.noreply.github.com> Date: Thu, 10 Aug 2023 18:44:39 +0200 Subject: [PATCH] fix tests --- tests/trenders.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/trenders.nim b/tests/trenders.nim index 1341b206..13b979df 100644 --- a/tests/trenders.nim +++ b/tests/trenders.nim @@ -11,12 +11,12 @@ suite "render (block), html default backend": test "nbCode without output": nbCode: discard - check nb.render(nb.blk).strip == """
discard
""" + check nb.render(nb.blk).strip == """
discard
""" test "nbCode with output": nbCode: echo "hi" check nb.render(nb.blk).strip == """ -
echo "hi"
hi
""" +
echo "hi"
hi
""" # switch to markdown backend useMdBackend nb