remove unnecessary test override

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1820652 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-01-09 12:23:37 +00:00
parent 5f0072983b
commit d12d1afa23

View File

@ -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);
}
}