diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-10-22 09:59:53 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-10-22 09:59:53 +0000 |
commit | 1b51dbca9fd0f3dfe57a714aebc8b9bf40a54dee (patch) | |
tree | 27c1289c0c0326d8d9154435348532a7073ced84 /poi | |
parent | 6290068f49b4fb3f294ca3b0c9054390eced9a8c (diff) | |
download | poi-1b51dbca9fd0f3dfe57a714aebc8b9bf40a54dee.tar.gz poi-1b51dbca9fd0f3dfe57a714aebc8b9bf40a54dee.zip |
get some T.DIST tests to work
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894471 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java index 1c03b02b43..1e18eb0515 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java @@ -38,7 +38,10 @@ final class TestTDistLt { //https://support.microsoft.com/en-us/office/t-dist-rt-function-20a30020-86f9-4b35-af1f-7ef6ae683eda confirmValue("60", "1", "TRUE", 0.99469533, 0.000001); confirmValue("-60", "1", "TRUE", 0.005304674, 0.000001); - //confirmValue("60", "1", "FALSE", 0.00073691, 0.000001); + confirmValue("-60", "1.9", "TRUE", 0.005304674, 0.000001); + confirmValue("8", "3", "FALSE", 0.00073691, 0.000001); + confirmValue("-8", "3", "FALSE", 0.00073691, 0.000001); + confirmValue("-8", "3.9", "FALSE", 0.00073691, 0.000001); } @Test |