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 8f1b047161
commit feae8a5d08
1 changed files with 2 additions and 2 deletions

View File

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