mirror of https://github.com/apache/poi.git
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:
parent
8f1b047161
commit
feae8a5d08
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue