diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2018-02-25 08:06:52 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2018-02-25 08:06:52 +0100 |
commit | 66368ab330386a83b800d80cd8562c405ac3531d (patch) | |
tree | f4c5dcd8344e6c6c242e3fcd82b9b07464d24595 /test | |
parent | eb16f3354f1926b66a06d2289b0bf394dc6e796c (diff) | |
download | pandoc-66368ab330386a83b800d80cd8562c405ac3531d.tar.gz |
Tests/Lua: fix tests on windows
Diffstat (limited to 'test')
-rw-r--r-- | test/Tests/Lua.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Lua.hs b/test/Tests/Lua.hs index b42fda9c8..4599e544d 100644 --- a/test/Tests/Lua.hs +++ b/test/Tests/Lua.hs @@ -115,7 +115,7 @@ tests = map (localOption (QuickCheckTests 20)) assertFilterConversion "unexpected script name" "script-name.lua" (doc $ para "ignored") - (doc $ para "lua/script-name.lua") + (doc $ para (str $ "lua" </> "script-name.lua")) , testCase "Pandoc version is set" . runPandocLua' $ do Lua.getglobal' "table.concat" |