You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2022/12/02 23:54:02 UTC

[tika] branch main updated: TIKA-3936 (#810)

This is an automated email from the ASF dual-hosted git repository.

tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/main by this push:
     new 8266622b5 TIKA-3936 (#810)
8266622b5 is described below

commit 8266622b508cbf623c7e19160465dea30ac5b796
Author: Tim Allison <ta...@apache.org>
AuthorDate: Fri Dec 2 18:53:57 2022 -0500

    TIKA-3936 (#810)
    
    * TIKA-3936 -- fix unit test for Windows and add back windows build (with space in path!)
    
    * TIKA-3936 -- fix action
    
    * TIKA-3936 -- add windows label
    
    * TIKA-3936 - strip out windows build until we can figure out what's breaking
---
 .../src/test/java/org/apache/tika/async/cli/TikaAsyncCLITest.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaAsyncCLITest.java b/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaAsyncCLITest.java
index a06f71c39..fc6694c74 100644
--- a/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaAsyncCLITest.java
+++ b/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaAsyncCLITest.java
@@ -24,7 +24,6 @@ import java.nio.file.Paths;
 import org.junit.jupiter.api.Test;
 
 import org.apache.tika.exception.TikaConfigException;
-import org.apache.tika.utils.ProcessUtils;
 
 public class TikaAsyncCLITest {
     @Test
@@ -33,7 +32,7 @@ public class TikaAsyncCLITest {
         assertThrows(TikaConfigException.class,
                 () -> TikaAsyncCLI.main(
                         new String[] {
-                            ProcessUtils.escapeCommandLine(config.toAbsolutePath().toString())
+                            config.toAbsolutePath().toString()
                         })
         );
     }