diff --git a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFinanceLib.java b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFinanceLib.java index 565e9ff0e8..33bc49d9df 100644 --- a/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFinanceLib.java +++ b/poi/src/test/java/org/apache/poi/ss/formula/functions/TestFinanceLib.java @@ -153,8 +153,7 @@ class TestFinanceLib extends BaseTestNumeric { HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb); HSSFCell cell = wb.getSheetAt(0).getRow(0).createCell(100); Utils.assertDouble(fe, cell, "NPV(A2, A4:A8)+A3", 1992.061554932363); - //TODO this scenario does not work - //Utils.assertDouble(fe, cell, "NPV(A2, A4:A8, -9000)+A3", -3749.47); + Utils.assertDouble(fe, cell, "NPV(A2, A4:A8, -9000)+A3", -3749.4650870155747); } }