aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2022-10-05 22:07:16 +0200
committerAlbert Krewinkel <[email protected]>2022-10-05 22:07:38 +0200
commit96bdd34a90fe61ef600095afb242fb7b0e28ff81 (patch)
tree0599559d9cb6c2ca44ca80002f1959edc23f16ac
parent48ab7a17cf14588f36c601bf9aca2f74e801f2a9 (diff)
Lua: fix tests on Windows broken in previous commit.
-rw-r--r--pandoc-lua-engine/test/lua/module/pandoc-template.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/pandoc-lua-engine/test/lua/module/pandoc-template.lua b/pandoc-lua-engine/test/lua/module/pandoc-template.lua
index 638b31f09..5b31e5ae0 100644
--- a/pandoc-lua-engine/test/lua/module/pandoc-template.lua
+++ b/pandoc-lua-engine/test/lua/module/pandoc-template.lua
@@ -50,7 +50,7 @@ return {
test('fails if template has non-existing partial', function ()
assert.error_matches(
function () return template.compile('${ nosuchpartial() }') end,
- 'Could not find data file templates/nosuchpartial'
+ 'Could not find data file'
)
end),
test('works with default template that uses partials', function ()