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 2018/08/09 18:55:45 UTC

[tika] branch TIKA-2552 updated: TIKA-2552 -- add tests back after fixing POI-62591

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

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


The following commit(s) were added to refs/heads/TIKA-2552 by this push:
     new da89caf  TIKA-2552 -- add tests back after fixing POI-62591
da89caf is described below

commit da89cafd01be16dfe2b6113451c51b47221f0533
Author: TALLISON <ta...@apache.org>
AuthorDate: Thu Aug 9 14:55:36 2018 -0400

    TIKA-2552 -- add tests back after fixing POI-62591
---
 .../java/org/apache/tika/parser/microsoft/PowerPointParserTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tika-parsers/src/test/java/org/apache/tika/parser/microsoft/PowerPointParserTest.java b/tika-parsers/src/test/java/org/apache/tika/parser/microsoft/PowerPointParserTest.java
index 1d62efd..dbba939 100644
--- a/tika-parsers/src/test/java/org/apache/tika/parser/microsoft/PowerPointParserTest.java
+++ b/tika-parsers/src/test/java/org/apache/tika/parser/microsoft/PowerPointParserTest.java
@@ -138,7 +138,7 @@ public class PowerPointParserTest extends TikaTest {
         assertEquals(-1, content.indexOf("Click to edit Master"));
 
         //TIKA-1171, POI-62591
-        //assertEquals(-1, content.indexOf("*"));
+        assertEquals(-1, content.indexOf("*"));
     }
 
     /**
@@ -162,7 +162,7 @@ public class PowerPointParserTest extends TikaTest {
         assertEquals(-1, content.indexOf("Click to edit Master"));
 
         //TIKA-1171, POI-62591
-        //assertEquals(-1, content.indexOf("*"));
+        assertEquals(-1, content.indexOf("*"));
     }
 
     @Test
@@ -181,7 +181,7 @@ public class PowerPointParserTest extends TikaTest {
         // Make sure boilerplate text didn't come through:
         assertEquals(-1, content.indexOf("Click to edit Master"));
         //TIKA-1171, POI-62591
-        //assertEquals(-1, content.indexOf("*"));
+        assertEquals(-1, content.indexOf("*"));
     }
 
     /**