git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-08-07 13:24:28 +00:00
parent f15474f1ba
commit 5ded0c8212
1 changed files with 1 additions and 1 deletions

View File

@ -115,6 +115,6 @@ final class TestTimeValue {
fe.notifyUpdateCell(cell);
CellValue result = fe.evaluate(cell);
assertEquals(result.getCellType(), CellType.NUMERIC);
assertEquals(expectedResult, result.getNumberValue());
assertEquals(expectedResult, result.getNumberValue(), 0.0001);
}
}