diff --git a/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFCell.java b/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFCell.java index 08ea882f8..29ef23117 100644 --- a/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFCell.java +++ b/src/ooxml/testcases/org/apache/poi/xssf/streaming/TestSXSSFCell.java @@ -34,7 +34,6 @@ import org.apache.poi.xssf.usermodel.XSSFCell; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.apache.xmlbeans.XmlCursor; import org.junit.AfterClass; -import org.junit.Assume; import org.junit.Test; import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTRst; @@ -83,12 +82,4 @@ public class TestSXSSFCell extends BaseTestXCell { swb.close(); } } - - @Test - public void testSetErrorValeFormula() throws IOException { - Assume.assumeTrue("This test is disabled because it fails for SXSSF because " + - "handling of errors in formulas is slightly different than in XSSF, " + - "but this proved to be non-trivial to solve...", - false); - } }