From 9f2af30c066d4d821237532b1dea3c8f3e7fac7b Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Tue, 8 May 2018 12:28:12 -0700
Subject: More adjustments to test-pandoc-utils.lua.

We need to find something that will work on windows.
---
 test/lua/test-pandoc-utils.lua | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

(limited to 'test/lua')

diff --git a/test/lua/test-pandoc-utils.lua b/test/lua/test-pandoc-utils.lua
index f0040062e..4d736d2d5 100644
--- a/test/lua/test-pandoc-utils.lua
+++ b/test/lua/test-pandoc-utils.lua
@@ -38,7 +38,7 @@ end
 
 function test_pipe ()
   if os_is_windows() then
-    local pipe_result = pandoc.pipe('echo', {}, 'hi')
+    local pipe_result = pandoc.pipe('find', {'hi'}, 'hi')
     return pipe_result == 'hi\n' or pipe_result == 'hi'
   else
     local pipe_result = pandoc.pipe('tr', {'a', 'b'}, 'abc')
@@ -48,11 +48,10 @@ end
 
 function test_failing_pipe ()
   if os_is_windows() then
-    local res, err = pcall(pandoc.pipe, 'cd', {}, 'NoNExistEnt')
+    local res, err = pcall(pandoc.pipe, 'find', {'/a'}, 'hi')
     return not res and
-      err.command == 'cd' and
-      err.error_code == 1 and
-      err.output == ''
+      err.command == 'find' and
+      err.error_code ~= 0
   else
     local res, err = pcall(pandoc.pipe, 'false', {}, 'abc')
     return not res and
-- 
cgit v1.2.3