aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2020-10-14 22:39:29 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2020-10-14 22:39:29 +0200
commit7f575463452f547ca5edc03dc4b6fbf011a6b194 (patch)
tree4b42c6f3844b6603e7bd32c48c86dae2b58cdcfb
parent90af1384433b1f537fa51f1018539d4d401ec73b (diff)
downloadpandoc-7f575463452f547ca5edc03dc4b6fbf011a6b194.tar.gz
Fix remaining typos in tests
See: #6738
-rw-r--r--test/Tests/Lua.hs2
-rw-r--r--test/Tests/Readers/Org/Inline.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Lua.hs b/test/Tests/Lua.hs
index bf9ddc2d5..853375327 100644
--- a/test/Tests/Lua.hs
+++ b/test/Tests/Lua.hs
@@ -179,7 +179,7 @@ tests = map (localOption (QuickCheckTests 20))
(doc $ para (str . T.pack $ "lua" </> "require-file.lua"))
, testCase "Allow singleton inline in constructors" . runLuaTest $ do
- Lua.liftIO . assertEqual "Not the exptected Emph" (Emph [Str "test"])
+ Lua.liftIO . assertEqual "Not the expected Emph" (Emph [Str "test"])
=<< Lua.callFunc "pandoc.Emph" (Str "test")
Lua.liftIO . assertEqual "Unexpected element" (Para [Str "test"])
=<< Lua.callFunc "pandoc.Para" ("test" :: String)
diff --git a/test/Tests/Readers/Org/Inline.hs b/test/Tests/Readers/Org/Inline.hs
index 85c9a8756..7c8a4496c 100644
--- a/test/Tests/Readers/Org/Inline.hs
+++ b/test/Tests/Readers/Org/Inline.hs
@@ -369,7 +369,7 @@ tests =
] =?>
para (emph "Hello, World")
- , "Macro repeting its argument" =:
+ , "Macro duplicating its argument" =:
T.unlines [ "#+MACRO: HELLO $1$1"
, "{{{HELLO(moin)}}}"
] =?>