]> source.dussan.org Git - poi.git/commitdiff
increased allowed range in TestHSSFSheet#testAutoSizeDate() to make tests on MacOS...
authorYegor Kozlov <yegor@apache.org>
Fri, 6 Aug 2010 08:59:12 +0000 (08:59 +0000)
committerYegor Kozlov <yegor@apache.org>
Fri, 6 Aug 2010 08:59:12 +0000 (08:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@982909 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/usermodel/TestHSSFSheet.java

index cf9d7bba572d84586943091df68fd1762f453dee..c041a94ad49c3f082fe39a3921d7d83253128f97 100644 (file)
@@ -579,10 +579,10 @@ public final class TestHSSFSheet extends BaseTestSheet {
        s.autoSizeColumn((short)1);
        
        // Size ranges due to different fonts on different machines
-       assertTrue("Single number column too small", s.getColumnWidth(0) > 350); 
-       assertTrue("Single number column too big",   s.getColumnWidth(0) < 500); 
-       assertTrue("6 digit number column too small", s.getColumnWidth(1) > 1500); 
-       assertTrue("6 digit number column too big",   s.getColumnWidth(1) < 2000);
+       assertTrue("Single number column too small: " + s.getColumnWidth(0), s.getColumnWidth(0) > 350); 
+       assertTrue("Single number column too big: " + s.getColumnWidth(0),   s.getColumnWidth(0) < 550); 
+       assertTrue("6 digit number column too small: " + s.getColumnWidth(1), s.getColumnWidth(1) > 1500); 
+       assertTrue("6 digit number column too big: " + s.getColumnWidth(1),   s.getColumnWidth(1) < 2000);
        
        // Set a date format
        HSSFCellStyle cs = wb.createCellStyle();
@@ -598,10 +598,10 @@ public final class TestHSSFSheet extends BaseTestSheet {
        s.autoSizeColumn((short)0);
        s.autoSizeColumn((short)1);
 
-       assertTrue("Date column too small", s.getColumnWidth(0) > 4750); 
-       assertTrue("Date column too small", s.getColumnWidth(1) > 4750); 
-       assertTrue("Date column too big", s.getColumnWidth(0) < 6500); 
-       assertTrue("Date column too big", s.getColumnWidth(0) < 6500); 
+       assertTrue("Date column too small: " + s.getColumnWidth(0), s.getColumnWidth(0) > 4750); 
+       assertTrue("Date column too small: " + s.getColumnWidth(1), s.getColumnWidth(1) > 4750); 
+       assertTrue("Date column too big: " + s.getColumnWidth(0), s.getColumnWidth(0) < 6500); 
+       assertTrue("Date column too big: " + s.getColumnWidth(0), s.getColumnWidth(0) < 6500); 
     }
 
     /**