]> source.dussan.org Git - poi.git/commitdiff
Why is there always one file that gets missed??
authorJason Height <jheight@apache.org>
Thu, 18 Aug 2005 07:13:15 +0000 (07:13 +0000)
committerJason Height <jheight@apache.org>
Thu, 18 Aug 2005 07:13:15 +0000 (07:13 +0000)
Minor fix to correct testcase asd a result of Unicode patch

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353771 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/record/TestSSTRecord.java

index f4c41d7d081513e619616b302e6b8e7ad581e5fd..03990a2fb3c1317596524381ca157486fcae3c98 100644 (file)
@@ -429,7 +429,7 @@ public class TestSSTRecord
         HSSFWorkbook wb = new HSSFWorkbook( stream );
         stream.close();
         HSSFSheet sheet = wb.getSheetAt( 1 );
-        assertEquals( "01/05 (Wed) ", sheet.getRow( 0 ).getCell( (short) 8 ).getStringCellValue() );
+        assertEquals( "01/05 (Wed)", sheet.getRow( 0 ).getCell( (short) 8 ).getStringCellValue() );
         assertEquals( "01/05 (Wed)", sheet.getRow( 1 ).getCell( (short) 8 ).getStringCellValue() );
 
         file = TempFile.createTempFile( "testout", "xls" );
@@ -445,11 +445,11 @@ public class TestSSTRecord
         stream.close();
         sheet = wb.getSheetAt( 0 );
         int row = 0;
-        assertEquals( "Testing ", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
+        assertEquals( "Testing", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
         assertEquals( "rich", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
         assertEquals( "text", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
         assertEquals( "strings", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
-        assertEquals( "Testing  ", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
+        assertEquals( "Testing", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
         assertEquals( "Testing", sheet.getRow( row++ ).getCell( (short) 0 ).getStringCellValue() );
 
 //        file = new File("/tryme.xls");