Skip to content

Commit

Permalink
fix some of the broken tests
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1923796 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pjfanning committed Feb 13, 2025
1 parent 961c83f commit 3be17c8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ void testBug61148() throws IOException {

eval.evaluateInCell(cell);

assertEquals("3", cell.toString());
assertEquals(3.0, cell.getNumericCellValue());
}
}

Expand Down Expand Up @@ -621,7 +621,6 @@ void testBug61532() throws IOException {

assertNotNull(eval.evaluateInCell(cell));

assertEquals("3", cell.toString());
assertEquals(CellType.NUMERIC, cell.getCellType());
assertEquals(3.0, cell.getNumericCellValue(), 0.01);
}
Expand Down

0 comments on commit 3be17c8

Please sign in to comment.