]> source.dussan.org Git - poi.git/commitdiff
fix typos
authorJaven O'Neal <onealj@apache.org>
Tue, 3 Nov 2015 06:03:52 +0000 (06:03 +0000)
committerJaven O'Neal <onealj@apache.org>
Tue, 3 Nov 2015 06:03:52 +0000 (06:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1712213 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java

index 875a780d67adede204ea140e968966738174da1f..4a14035f90071ec133aab2c4527e47dbdac90cbb 100644 (file)
@@ -380,7 +380,7 @@ public abstract class BaseTestBugzillaIssues {
 
         // autoSize will fail if required fonts are not installed, skip this test then
         Font font = wb.getFontAt(cell0.getCellStyle().getFontIndex());
-        Assume.assumeTrue("Cannot verify auoSizeColumn() because the necessary Fonts are not installed on this machine: " + font,
+        Assume.assumeTrue("Cannot verify autoSizeColumn() because the necessary Fonts are not installed on this machine: " + font,
                 SheetUtil.canComputeColumnWidht(font));
 
         assertEquals("Expecting no indentation in this test",
@@ -413,7 +413,7 @@ public abstract class BaseTestBugzillaIssues {
         assertTrue("Expected to have cell width > 0 AFTER auto-size, but had " + width, width > 0);
 
         assertEquals(255*256, sheet.getColumnWidth(0)); // maximum column width is 255 characters
-        sheet.setColumnWidth(0, sheet.getColumnWidth(0)); // Bug 506819 reports exception at this point
+        sheet.setColumnWidth(0, sheet.getColumnWidth(0)); // Bug 50681 reports exception at this point
         wb.close();
     }