[bug-64044] setCellValue(LocalDate) does not support nulls properly

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1872247 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2020-01-02 15:20:04 +00:00
parent 5ec079072a
commit 781ef0c754
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public abstract class BaseTestCell {
String strNull = null;
cell.setCellValue(strNull);
assertNull(cell.getRichStringCellValue());
assertEquals("", cell.getStringCellValue());
assertEquals(CellType.BLANK, cell.getCellType());
LocalDate ldNull = null;