This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch TIKA-4508 in repository https://gitbox.apache.org/repos/asf/tika.git
commit d56b64f5cb8a9e0ae18899a6015fd24f7eb60e24 Author: tallison <[email protected]> AuthorDate: Mon Oct 6 11:04:45 2025 -0400 TIKA-4508 -- fix unit test --- .../java/org/apache/tika/async/cli/TikaConfigAsyncWriterTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaConfigAsyncWriterTest.java b/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaConfigAsyncWriterTest.java index c88db2de0..bd5457ee4 100644 --- a/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaConfigAsyncWriterTest.java +++ b/tika-pipes/tika-async-cli/src/test/java/org/apache/tika/async/cli/TikaConfigAsyncWriterTest.java @@ -43,7 +43,7 @@ public class TikaConfigAsyncWriterTest { Path p = Paths.get(TikaConfigAsyncWriter.class.getResource("/configs/TIKA-4508-parsers.xml").toURI()); SimpleAsyncConfig simpleAsyncConfig = new SimpleAsyncConfig("input", "output", 4, 10000L, "-Xmx1g", null, p.toAbsolutePath().toString()); - Path target = Paths.get("/home/tallison/Desktop/tmp/").resolve("combined.xml"); + Path target = dir.resolve("combined.xml"); TikaConfigAsyncWriter writer = new TikaConfigAsyncWriter(simpleAsyncConfig); writer.write(target); @@ -57,7 +57,7 @@ public class TikaConfigAsyncWriterTest { Path p = Paths.get(TikaConfigAsyncWriter.class.getResource("/configs/TIKA-4508-emitters.xml").toURI()); SimpleAsyncConfig simpleAsyncConfig = new SimpleAsyncConfig("input", "output", 4, 10000L, "-Xmx1g", null, p.toAbsolutePath().toString()); - Path target = Paths.get("/home/tallison/Desktop/tmp/").resolve("combined.xml"); + Path target = dir.resolve("combined.xml"); TikaConfigAsyncWriter writer = new TikaConfigAsyncWriter(simpleAsyncConfig); writer.write(target);
