aboutsummaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2021-08-07 15:09:40 +0000
committerPJ Fanning <fanningpj@apache.org>2021-08-07 15:09:40 +0000
commitc4aa15c3cc45b0f0f2b55e09646f6e6396b50aae (patch)
tree75762f07ae636ee440cd89fa5883435112988bac /poi
parente299b2d677890756353568a299a068c6203af0c2 (diff)
downloadpoi-c4aa15c3cc45b0f0f2b55e09646f6e6396b50aae.tar.gz
poi-c4aa15c3cc45b0f0f2b55e09646f6e6396b50aae.zip
test issue
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/test/java/org/apache/poi/ss/formula/atp/TestPercentRankIncFunction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestPercentRankIncFunction.java b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestPercentRankIncFunction.java
index b73352d53c..596e6844cb 100644
--- a/poi/src/test/java/org/apache/poi/ss/formula/atp/TestPercentRankIncFunction.java
+++ b/poi/src/test/java/org/apache/poi/ss/formula/atp/TestPercentRankIncFunction.java
@@ -48,8 +48,8 @@ public class TestPercentRankIncFunction {
assertDouble(fe, cell, "PERCENTRANK.INC(A2:A11,8,2)", 0.66);
assertDouble(fe, cell, "PERCENTRANK.INC(A2:A11,8,4)", 0.6666);
assertDouble(fe, cell, "PERCENTRANK.INC(A2:A11,5)", 0.583);
- assertDouble(fe, cell, "PERCENTRANK(A2:A11,1)", 0);
- assertDouble(fe, cell, "PERCENTRANK(A2:A11,13)", 1);
+ assertDouble(fe, cell, "PERCENTRANK.INC(A2:A11,1)", 0);
+ assertDouble(fe, cell, "PERCENTRANK.INC(A2:A11,13)", 1);
}
}