]> source.dussan.org Git - poi.git/commitdiff
get some T.DIST tests to work
authorPJ Fanning <fanningpj@apache.org>
Fri, 22 Oct 2021 09:59:53 +0000 (09:59 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 22 Oct 2021 09:59:53 +0000 (09:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894471 13f79535-47bb-0310-9956-ffa450edef68

poi/src/test/java/org/apache/poi/ss/formula/functions/TestTDistLt.java

index 1c03b02b43d5d68a2b1421cf79c3130b3c047de8..1e18eb05152776973ee89086300eea84716a0a98 100644 (file)
@@ -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