fixed the tests, but they still work

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352596 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Avik Sengupta 2002-05-03 15:47:20 +00:00
parent 8653f7bb40
commit 8ac8b510cf

View File

@ -652,7 +652,7 @@ extends TestCase {
c = r.getCell((short)0);
assertTrue("function ="+function+"(A2,A3)",
( (function+"(A2,A3)").equals((function+"(A2,A3)")) )
( (function+"(A2,A3)").equals(c.getCellFormula()) )
);
in.close();
}
@ -691,7 +691,7 @@ extends TestCase {
c = r.getCell((short)0);
assertTrue("function ="+function+"(A2:A4,B2:B4)",
( (function+"(A2:A4,B2:B4)").equals((function+"(A2:A4,B2:B4)")) )
( (function+"(A2:A4,B2:B4)").equals(c.getCellFormula()) )
);
in.close();
}