]> source.dussan.org Git - poi.git/commitdiff
bug 34575 fixed, thanks Amol
authorAvik Sengupta <avik@apache.org>
Fri, 8 Jul 2005 16:01:06 +0000 (16:01 +0000)
committerAvik Sengupta <avik@apache.org>
Fri, 8 Jul 2005 16:01:06 +0000 (16:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353744 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/usermodel/TestBugs.java
src/testcases/org/apache/poi/hssf/usermodel/TestUnfixedBugs.java

index 61336c51379956238b8f0e1eff070dfcc57e9a6c..5b102733d89aad3d793f8de8f599c66977044a86 100644 (file)
@@ -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");
index 36d85daaadfb35df4d4ec48fd9673847b3df8182..49bbcd623270c8c99640e46723a65b4774224c4b 100644 (file)
@@ -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 {