summaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Creole.hs12
-rw-r--r--test/Tests/Readers/Org/Inline.hs2
2 files changed, 7 insertions, 7 deletions
diff --git a/test/Tests/Readers/Creole.hs b/test/Tests/Readers/Creole.hs
index 8611a735e..b9a8d56f0 100644
--- a/test/Tests/Readers/Creole.hs
+++ b/test/Tests/Readers/Creole.hs
@@ -119,7 +119,7 @@ tests = [
, plain "blubb" ]
, "nested many unordered lists, one separating space" =:
("* foo\n** bar\n*** third\n*** third two\n** baz\n*** third again\n"
- <> "**** fourth\n***** fith\n* blubb")
+ <> "**** fourth\n***** fifth\n* blubb")
=?> bulletList [ plain "foo"
<> bulletList [ plain "bar"
<> bulletList [ plain "third"
@@ -129,7 +129,7 @@ tests = [
<> bulletList [
plain "fourth"
<> bulletList [
- plain "fith"
+ plain "fifth"
]
]
]
@@ -166,7 +166,7 @@ tests = [
, plain "blubb" ]
, "nested many ordered lists, one separating space" =:
("# foo\n## bar\n### third\n### third two\n## baz\n### third again\n"
- <> "#### fourth\n##### fith\n# blubb")
+ <> "#### fourth\n##### fifth\n# blubb")
=?> orderedList [ plain "foo"
<> orderedList [ plain "bar"
<> orderedList [ plain "third"
@@ -176,7 +176,7 @@ tests = [
<> orderedList [
plain "fourth"
<> orderedList [
- plain "fith"
+ plain "fifth"
]
]
]
@@ -189,7 +189,7 @@ tests = [
, plain "blubb" ]
, "mixed nested ordered and unordered lists, one separating space" =:
("# foo\n** bar\n### third\n### third two\n** baz\n### third again\n"
- <> "#### fourth\n***** fith\n# blubb")
+ <> "#### fourth\n***** fifth\n# blubb")
=?> orderedList [ plain "foo"
<> bulletList [ plain "bar"
<> orderedList [ plain "third"
@@ -199,7 +199,7 @@ tests = [
<> orderedList [
plain "fourth"
<> bulletList [
- plain "fith"
+ plain "fifth"
]
]
]
diff --git a/test/Tests/Readers/Org/Inline.hs b/test/Tests/Readers/Org/Inline.hs
index c38a48cc0..bec796972 100644
--- a/test/Tests/Readers/Org/Inline.hs
+++ b/test/Tests/Readers/Org/Inline.hs
@@ -186,7 +186,7 @@ tests =
, "3" <> subscript "{}"
, "4" <> superscript ("(a(" <> strong "b(c" <> ")d))")
])
- , "Verbatim text can contain equal signes (=)" =:
+ , "Verbatim text can contain equal signs (=)" =:
"=is_subst = True=" =?>
para (codeWith ("", ["verbatim"], []) "is_subst = True")