diff options
author | Tim Allison <tallison@apache.org> | 2017-04-05 01:45:55 +0000 |
---|---|---|
committer | Tim Allison <tallison@apache.org> | 2017-04-05 01:45:55 +0000 |
commit | 55ed734108be87f0487343d86a616e87a5ee20ca (patch) | |
tree | 1846d23fd86228de0c34d794070e1b213bd39d88 /src/scratchpad/testcases/org/apache | |
parent | 0f9335a57577179e0408d67e888143bb9c752baa (diff) | |
download | poi-55ed734108be87f0487343d86a616e87a5ee20ca.tar.gz poi-55ed734108be87f0487343d86a616e87a5ee20ca.zip |
bug 50955 and bug 60953 improve Big5 reader; ensure one character
per byte pair
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1790172 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/scratchpad/testcases/org/apache')
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java | 2 | ||||
-rw-r--r-- | src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java index 4747577f1d..06cfcb44a0 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestBugs.java @@ -49,7 +49,6 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem; import org.apache.poi.util.IOUtils; import org.apache.poi.util.POILogFactory; import org.apache.poi.util.POILogger; -import org.junit.Ignore; import org.junit.Test; /** @@ -729,7 +728,6 @@ public class TestBugs{ * Bug 51944 - PAPFormattedDiskPage.getPAPX - IndexOutOfBounds */ @Test - @Ignore("Test now passes in Java 1.7 and 1.8, but not 1.6") public void testBug51944() throws Exception { HWPFOldDocument doc = HWPFTestDataSamples.openOldSampleFile("Bug51944.doc"); diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java index bf355959a6..925b8d0566 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/usermodel/TestHWPFOldDocument.java @@ -247,8 +247,8 @@ public final class TestHWPFOldDocument extends HWPFTestCase { */ assertContains(txt, "\n9-55 xxxxx block5"); //TODO: figure out why these two aren't passing -// assertContains(txt, "\u2019\u0078 block2");//make sure smart quote is extracted correctly -// assertContains(txt, "We are able to");//not sure if we can get this easily? + //assertContains(txt, "\u2019\u0078 block2");//make sure smart quote is extracted correctly + //assertContains(txt, "We are able to");//not sure if we can get this easily? } } |