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/04/25 19:27:59 UTC

[tika] branch main updated: further attempts to fix windows build

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 c06968473 further attempts to fix windows build
c06968473 is described below

commit c0696847385bb0fff6fbe8b643fd6b07ff52f098
Author: tallison <ta...@apache.org>
AuthorDate: Mon Apr 25 15:27:42 2022 -0400

    further attempts to fix windows build
---
 .../java/org/apache/tika/server/core/TikaServerIntegrationTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tika-server/tika-server-core/src/test/java/org/apache/tika/server/core/TikaServerIntegrationTest.java b/tika-server/tika-server-core/src/test/java/org/apache/tika/server/core/TikaServerIntegrationTest.java
index cc8839d27..aa9629f3e 100644
--- a/tika-server/tika-server-core/src/test/java/org/apache/tika/server/core/TikaServerIntegrationTest.java
+++ b/tika-server/tika-server-core/src/test/java/org/apache/tika/server/core/TikaServerIntegrationTest.java
@@ -306,8 +306,8 @@ public class TikaServerIntegrationTest extends IntegrationTestBase {
 
     private String getSSL(String file) {
         try {
-            return ProcessUtils.escapeCommandLine(Paths.get(TikaServerIntegrationTest.class.
-                    getResource("/ssl-keys/" + file).toURI()).toAbsolutePath().toString());
+            return Paths.get(TikaServerIntegrationTest.class.
+                    getResource("/ssl-keys/" + file).toURI()).toAbsolutePath().toString();
         } catch (URISyntaxException e) {
             throw new RuntimeException(e);
         }