From 6196f050288153227ad4ef32fbc73fb347a54e80 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Fri, 15 Oct 2010 18:00:26 +0000 Subject: [PATCH] fix compile-test for rename git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1023042 13f79535-47bb-0310-9956-ffa450edef68 --- solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java b/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java index 2f1e88bebba..85590d44428 100644 --- a/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java +++ b/solr/src/test/org/apache/solr/core/IndexReaderFactoryTest.java @@ -40,7 +40,7 @@ public class IndexReaderFactoryTest extends AbstractSolrTestCase { 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);