diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-08-07 13:24:28 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-08-07 13:24:28 +0000 |
commit | 5ded0c8212d49acb439c8b4edf9561ecffcf83b3 (patch) | |
tree | d9b359b7c9a6bcb0ef96b70c53b66b3f8b5a1c29 | |
parent | f15474f1bae6079a0d55f8d3ef53b2651267864f (diff) | |
download | poi-5ded0c8212d49acb439c8b4edf9561ecffcf83b3.tar.gz poi-5ded0c8212d49acb439c8b4edf9561ecffcf83b3.zip |
add test
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892076 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java index 0a125bd80b..3cd4ab552f 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTimeValue.java @@ -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); } } |