You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by br...@apache.org on 2003/02/01 16:36:26 UTC

cvs commit: jakarta-ojb/src/test/org/apache/ojb/broker QueryTest.java

brj         2003/02/01 07:36:26

  Modified:    src/test/org/apache/ojb/broker QueryTest.java
  Log:
  access static in a static way
  
  Revision  Changes    Path
  1.20      +3 -3      jakarta-ojb/src/test/org/apache/ojb/broker/QueryTest.java
  
  Index: QueryTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ojb/src/test/org/apache/ojb/broker/QueryTest.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- QueryTest.java	19 Jan 2003 11:49:43 -0000	1.19
  +++ QueryTest.java	1 Feb 2003 15:36:26 -0000	1.20
  @@ -786,17 +786,17 @@
   
           // Verify the record count
           if (delta <= 0) {
  -            this.assertEquals("record count",
  +            assertEquals("record count",
                                 (recordCount + delta),
                                 theObjects.length);
           } else {
  -            this.assertEquals("record count",
  +            assertEquals("record count",
                                 recordCount,
                                 theObjects.length);
           }
   
           // Verify the query size
  -        this.assertEquals("Query size",recordCount,listQuery.fullSize());
  +        assertEquals("Query size",recordCount,listQuery.fullSize());
       }
   
   }