Skip to content

Commit d14367e

Browse files
authored
Merge pull request #74 from waxxxd/master
-Additional check to ensure the cell is null before the new implemention
2 parents a83c001 + c40aa26 commit d14367e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/java/com/monitorjbl/xlsx/StreamingReaderTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ public void testShouldReturnBlankForMissingCellPolicy_CREATE_NULL_AS_BLANK() thr
603603
) {
604604
Row row = reader.iterator().next();
605605
assertEquals("B1 is Null ->", row.getCell(0, Row.CREATE_NULL_AS_BLANK).getStringCellValue()); //Remain unchanged
606+
assertThat(row.getCell(1), is(nullValue()));
606607
assertNotNull(row.getCell(1, Row.CREATE_NULL_AS_BLANK));
607608
}
608609
}

0 commit comments

Comments
 (0)