From 9555f55575fbbadd6c761e2b5711894d98b04d7c Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Sun, 4 May 2025 16:22:35 -0500 Subject: [PATCH] Fixed typo in test --- src/Test.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Test.hs b/src/Test.hs index d415adb..22859f7 100644 --- a/src/Test.hs +++ b/src/Test.hs @@ -30,7 +30,7 @@ integrationTests = TestList [ check_equal "Integration 1" "

Sample Markdown

This is some basic, sample markdown.

Second Heading

" (convert "# Sample Markdown\n\n This is some basic, sample markdown.\n\n ## __Second__ _Heading_"), check_equal "Integration 2" "

Hello World

" (convert "__Hello__\n_World_"), - check_equal "Integration 3" "

Hello

WorldM/p>" (convert "# Hello\nWorld") + check_equal "Integration 3" "

Hello

World

" (convert "# Hello\nWorld") ]