This is an automated email from the ASF dual-hosted git repository. tballison pushed a commit to branch TIKA-4734 in repository https://gitbox.apache.org/repos/asf/tika.git
commit a1560f046ecff55fdac0d458c7695e2b24fb52cd Author: tallison <[email protected]> AuthorDate: Wed May 27 10:42:01 2026 -0400 further update --- tika-app/src/test/java/org/apache/tika/cli/TikaCLITest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tika-app/src/test/java/org/apache/tika/cli/TikaCLITest.java b/tika-app/src/test/java/org/apache/tika/cli/TikaCLITest.java index 396e174057..bc5b4eb848 100644 --- a/tika-app/src/test/java/org/apache/tika/cli/TikaCLITest.java +++ b/tika-app/src/test/java/org/apache/tika/cli/TikaCLITest.java @@ -760,10 +760,6 @@ public class TikaCLITest { assertTrue(content.contains("application/vnd.oasis.opendocument.text-web")); } - /** - * reset outContent and errContent if they are not empty - * run given params in TikaCLI and return outContent String with UTF-8 - */ /** * Tests --convert-config-xml-to-json with no separate config file. * Regression test for TIKA-4734: the flag used to be misrouted to async @@ -783,6 +779,10 @@ public class TikaCLITest { assertTrue(content.trim().startsWith("{"), "Output should be pure JSON, got: " + content); } + /** + * reset outContent and errContent if they are not empty + * run given params in TikaCLI and return outContent String with UTF-8 + */ String getParamOutContent(String... params) throws Exception { resetContent(); TikaCLI.main(params);
