aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/lua/test-pandoc-utils.lua5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/lua/test-pandoc-utils.lua b/test/lua/test-pandoc-utils.lua
index 89d273cef..21f937edb 100644
--- a/test/lua/test-pandoc-utils.lua
+++ b/test/lua/test-pandoc-utils.lua
@@ -39,11 +39,10 @@ end
function test_pipe ()
if os_is_windows() then
local pipe_result = pandoc.pipe('find', {'hi'}, 'hi')
- print(pipe_result)
- return pipe_result == 'hi\n' or pipe_result == 'hi'
+ return pipe_result:match("%a+") == 'hi'
else
local pipe_result = pandoc.pipe('tr', {'a', 'b'}, 'abc')
- return pipe_result == 'bbc\n' or pipe_result == 'bbc'
+ return pipe_result:match("%a+") == 'bbc'
end
end