avik        02/05/03 08:47:20

  Modified:    src/testcases/org/apache/poi/hssf/usermodel
                        TestFormulas.java
  Log:
  fixed the tests, but they still work
  
  Revision  Changes    Path
  1.13      +2 -2      
jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java
  
  Index: TestFormulas.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/testcases/org/apache/poi/hssf/usermodel/TestFormulas.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- TestFormulas.java 1 May 2002 01:41:51 -0000       1.12
  +++ TestFormulas.java 3 May 2002 15:47:20 -0000       1.13
  @@ -652,7 +652,7 @@
               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 @@
               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();
       }
  
  
  


Reply via email to