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 53b99ecd17
commit 5d596f6fc5
1 changed files with 0 additions and 9 deletions

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