You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2010/10/15 20:00:27 UTC

svn commit: r1023042 - /lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java

Author: rmuir
Date: Fri Oct 15 18:00:26 2010
New Revision: 1023042

URL: http://svn.apache.org/viewvc?rev=1023042&view=rev
Log:
fix compile-test for rename

Modified:
    lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java

Modified: lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java?rev=1023042&r1=1023041&r2=1023042&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java (original)
+++ lucene/dev/trunk/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java Fri Oct 15 18:00:26 2010
@@ -40,7 +40,7 @@ public class IndexReaderFactoryTest exte
   public void testAltReaderUsed() throws Exception {
     IndexReaderFactory readerFactory = h.getCore().getIndexReaderFactory();
     assertNotNull("Factory is null", readerFactory);
-    assertTrue("readerFactory is not an instanceof " + AlternateIndexReaderTest.TestIndexReaderFactory.class, readerFactory instanceof StandardIndexReaderFactory);
+    assertTrue("readerFactory is not an instanceof " + AlternateDirectoryTest.TestIndexReaderFactory.class, readerFactory instanceof StandardIndexReaderFactory);
     assertTrue("termInfoIndexDivisor not set to 12", readerFactory.getTermInfosIndexDivisor() == 12);