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 2016/06/29 13:33:51 UTC

tika git commit: fix getRecursiveJson -> getRecursiveMetadata in TikaTest, no json is involved here...not sure why Intellij didn't catch this one. sorry.

Repository: tika
Updated Branches:
  refs/heads/2.x 2eb4804d1 -> 2a7e52ec4


fix getRecursiveJson -> getRecursiveMetadata in TikaTest, no json is involved here...not sure why Intellij didn't catch this one.  sorry.


Project: http://git-wip-us.apache.org/repos/asf/tika/repo
Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/2a7e52ec
Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/2a7e52ec
Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/2a7e52ec

Branch: refs/heads/2.x
Commit: 2a7e52ec4db0dee1996817e41be4ca13425d55ee
Parents: 2eb4804
Author: tballison <ta...@mitre.org>
Authored: Wed Jun 29 09:33:43 2016 -0400
Committer: tballison <ta...@mitre.org>
Committed: Wed Jun 29 09:33:43 2016 -0400

----------------------------------------------------------------------
 .../src/test/java/org/apache/tika/parser/AutoDetectParserTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tika/blob/2a7e52ec/tika-app/src/test/java/org/apache/tika/parser/AutoDetectParserTest.java
----------------------------------------------------------------------
diff --git a/tika-app/src/test/java/org/apache/tika/parser/AutoDetectParserTest.java b/tika-app/src/test/java/org/apache/tika/parser/AutoDetectParserTest.java
index 2c8384d..26c3fe1 100644
--- a/tika-app/src/test/java/org/apache/tika/parser/AutoDetectParserTest.java
+++ b/tika-app/src/test/java/org/apache/tika/parser/AutoDetectParserTest.java
@@ -391,7 +391,7 @@ public class AutoDetectParserTest extends TikaTest {
         ParseContext context = new ParseContext();
         context.set(PDFParserConfig.class, config);
 
-        List<Metadata> metadataList = getRecursiveJson("testPDF_childAttachments.pdf", context);
+        List<Metadata> metadataList = getRecursiveMetadata("testPDF_childAttachments.pdf", context);
         //sanity check
         assertEquals(5, metadataList.size());