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") ,"//[EMAIL PROTECTED]" );
- // 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") ,"//[EMAIL
PROTECTED]" );
- // Wait longer then the autocommit time
+ // Wait longer than the autocommit time
Thread.sleep( 1000 );
assertQ("deleted and time has passed", req("id:529") ,"//[EMAIL
PROTECTED]" );
@@ -172,7 +172,7 @@
assertQ("should not be there yet", req("id:500") ,"//[EMAIL PROTECTED]" );
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
) );