From 691f38f3d6e1ee4cd1f5d5c8c60c628543f11f55 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 8 May 2018 22:08:23 -0700 Subject: [PATCH] test-pandoc-utils.lua - add diagnostic for windows test. --- test/lua/test-pandoc-utils.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/test/lua/test-pandoc-utils.lua b/test/lua/test-pandoc-utils.lua index 4d736d2d5..89d273cef 100644 --- a/test/lua/test-pandoc-utils.lua +++ b/test/lua/test-pandoc-utils.lua @@ -39,6 +39,7 @@ 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' else local pipe_result = pandoc.pipe('tr', {'a', 'b'}, 'abc')