You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by kl...@apache.org on 2007/08/09 04:46:03 UTC

svn commit: r564078 - /lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java

Author: klaas
Date: Wed Aug  8 19:46:02 2007
New Revision: 564078

URL: http://svn.apache.org/viewvc?view=rev&rev=564078
Log:
typo

Modified:
    lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java

Modified: lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java?view=diff&rev=564078&r1=564077&r2=564078
==============================================================================
--- lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java (original)
+++ lucene/solr/trunk/src/test/org/apache/solr/update/AutoCommitTest.java Wed Aug  8 19:46:02 2007
@@ -81,7 +81,7 @@
     req.setContentStreams( toContentStreams(
         adoc("id", "A14", "subject", "info" ), null ) );
     handler.handleRequest( req, rsp );
-    // Wait longer then the autocommit time
+    // Wait longer than the autocommit time
     Thread.sleep( 1000 );
     // blocks until commit is complete
     req.setContentStreams( toContentStreams(
@@ -144,7 +144,7 @@
     // Check it it is in the index
     assertQ("shouldn't find any", req("id:529") ,"//result[@numFound=0]" );
 
-    // Wait longer then the autocommit time
+    // Wait longer than the autocommit time
     Thread.sleep( 1000 );
     req.setContentStreams( toContentStreams(
       adoc("id", "530", "field_t", "what's inside?", "subject", "info"), null ) );
@@ -158,7 +158,7 @@
     // Delete the document
     assertU( delI("529") );
     assertQ("deleted, but should still be there", req("id:529") ,"//result[@numFound=1]" );
-    // Wait longer then the autocommit time
+    // Wait longer than the autocommit time
     Thread.sleep( 1000 );
     assertQ("deleted and time has passed", req("id:529") ,"//result[@numFound=0]" );
     
@@ -172,7 +172,7 @@
     assertQ("should not be there yet", req("id:500") ,"//result[@numFound=0]" );
     assertEquals( 2, tracker.autoCommitCount );
     
-    // Wait longer then the autocommit time
+    // Wait longer than the autocommit time
     Thread.sleep( 1000 );
     req.setContentStreams( toContentStreams(
       adoc("id", "531", "field_t", "what's inside?", "subject", "info"), null ) );