From 5f33d2e0cd9f19566904c93be04f586de811dd75 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Tue, 8 May 2018 22:32:44 -0700
Subject: [PATCH] Another try at test-pandoc-utils.lua on windows.

---
 test/lua/test-pandoc-utils.lua | 5 ++---
 1 file 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