mirror of https://github.com/apache/poi.git
[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:
parent
5ec079072a
commit
781ef0c754
|
@ -135,7 +135,7 @@ public abstract class BaseTestCell {
|
||||||
|
|
||||||
String strNull = null;
|
String strNull = null;
|
||||||
cell.setCellValue(strNull);
|
cell.setCellValue(strNull);
|
||||||
assertNull(cell.getRichStringCellValue());
|
assertEquals("", cell.getStringCellValue());
|
||||||
assertEquals(CellType.BLANK, cell.getCellType());
|
assertEquals(CellType.BLANK, cell.getCellType());
|
||||||
|
|
||||||
LocalDate ldNull = null;
|
LocalDate ldNull = null;
|
||||||
|
|
Loading…
Reference in New Issue