You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ar...@apache.org on 2007/08/24 16:40:04 UTC

svn commit: r569401 - /incubator/lucene.net/trunk/C#/src/Test/Index/TestIndexModifier.cs

Author: aroush
Date: Fri Aug 24 07:40:04 2007
New Revision: 569401

URL: http://svn.apache.org/viewvc?rev=569401&view=rev
Log:
Fix: LUCENENET-90 "Nunit test for TestIndexModifier.TestIndex"

Modified:
    incubator/lucene.net/trunk/C#/src/Test/Index/TestIndexModifier.cs

Modified: incubator/lucene.net/trunk/C#/src/Test/Index/TestIndexModifier.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Index/TestIndexModifier.cs?rev=569401&r1=569400&r2=569401&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/Index/TestIndexModifier.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/Index/TestIndexModifier.cs Fri Aug 24 07:40:04 2007
@@ -67,7 +67,7 @@
 			i.AddDocument(GetDoc());
 			i.AddDocument(GetDoc());
 			i.Flush();
-			Assert.AreEqual(3, i.DocCount());
+			// depend on merge policy - assertEquals(3, i.docCount());
 			i.DeleteDocuments(allDocTerm);
 			Assert.AreEqual(0, i.DocCount());
 			i.Optimize();