From: Avik Sengupta Date: Fri, 8 Jul 2005 16:01:06 +0000 (+0000) Subject: bug 34575 fixed, thanks Amol X-Git-Tag: BEFORE_RICHTEXT~25 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b54043b0e05d081c6a1b0565279d9522d80843ba;p=poi.git bug 34575 fixed, thanks Amol git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353744 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java b/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java index 61336c5137..5b102733d8 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java @@ -248,7 +248,6 @@ extends TestCase { } /**Double byte strings*/ - /* 15556 is fixed, but this doesnt work due to bug 34575 public void test15556() throws java.io.IOException { String filename = System.getProperty("HSSF.testdata.path"); @@ -260,7 +259,6 @@ extends TestCase { this.assertTrue("Read row fine!" , true); } - */ /**Double byte strings */ public void test22742() throws java.io.IOException { String filename = System.getProperty("HSSF.testdata.path"); diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestUnfixedBugs.java b/src/testcases/org/apache/poi/hssf/usermodel/TestUnfixedBugs.java index 36d85daaad..49bbcd6232 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestUnfixedBugs.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestUnfixedBugs.java @@ -37,18 +37,6 @@ public class TestUnfixedBugs extends TestCase { } - /* 15556 is fixed, but this doesnt work due to bug 34575 - * ArrayIndexOutOfBound in ObjRecord */ - public void test15556() throws java.io.IOException { - String filename = System.getProperty("HSSF.testdata.path"); - filename=filename+"/15556.xls"; - FileInputStream in = new FileInputStream(filename); - HSSFWorkbook wb = new HSSFWorkbook(in); - HSSFSheet sheet = wb.getSheetAt(0); - HSSFRow row = sheet.getRow(45); - assertTrue("Read row fine!" , true); - - } /* ArrayIndexOutOfBound in BOFRecord */ public void test28772() throws java.io.IOException {