]> source.dussan.org Git - poi.git/commitdiff
fix dget test
authorPJ Fanning <fanningpj@apache.org>
Wed, 25 May 2022 15:14:44 +0000 (15:14 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 25 May 2022 15:14:44 +0000 (15:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1901245 13f79535-47bb-0310-9956-ffa450edef68

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

index 7b6f6eeb2826cccffbc7df727b88babad18c108e..6947f8d67bd49be58678e00a4272e199c9bbb8a8 100644 (file)
@@ -42,8 +42,7 @@ public class TestDGet {
             HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
             HSSFCell cell = wb.getSheetAt(0).getRow(0).createCell(100);
             assertError(fe, cell, "DGET(A5:E11, \"Yield\", A1:A3)", FormulaError.NUM);
-            //next one fails - no match found when it should match and return 10
-            //assertDouble(fe, cell, "DGET(A5:E11, \"Yield\", A1:F3)", 10);
+            assertDouble(fe, cell, "DGET(A5:E11, \"Yield\", A1:F3)", 10);
         }
     }
 
@@ -52,7 +51,7 @@ public class TestDGet {
         HSSFSheet sheet = wb.createSheet();
         addRow(sheet, 0, "Tree", "Height", "Age", "Yield", "Profit", "Height");
         addRow(sheet, 1, "=Apple", ">10", null, null, null, "<16");
-        addRow(sheet, 2, "=Pear", ">12");
+        addRow(sheet, 2, "Pear", ">12");
         addRow(sheet, 3);
         addRow(sheet, 4, "Tree", "Height", "Age", "Yield", "Profit");
         addRow(sheet, 5, "Apple", 18, 20, 14, 105);
@@ -60,7 +59,7 @@ public class TestDGet {
         addRow(sheet, 7, "Cherry", 13, 14, 9, 105);
         addRow(sheet, 8, "Apple", 14, null, 10, 75);
         addRow(sheet, 9, "Pear", 9, 8, 8, 77);
-        addRow(sheet, 10, "Apple", 12, 11, 6, 45);
+        addRow(sheet, 10, "Apple", 8, 9, 6, 45);
         return wb;
     }
 }