aboutsummaryrefslogtreecommitdiff
path: root/test/lua/module/pandoc-types.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua/module/pandoc-types.lua')
-rw-r--r--test/lua/module/pandoc-types.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/lua/module/pandoc-types.lua b/test/lua/module/pandoc-types.lua
index 880dd567e..d4e063a5c 100644
--- a/test/lua/module/pandoc-types.lua
+++ b/test/lua/module/pandoc-types.lua
@@ -26,10 +26,9 @@ return {
)
end),
test('non-version string is rejected', function ()
- assert.error_matches(
- function () Version '11friends' end,
- '11friends'
- )
+ local success, msg = pcall(function () Version '11friends' end)
+ assert.is_falsy(success)
+ assert.is_truthy(tostring(msg):match('11friends'))
end)
},