LUCENE-2144

No testing of features outside of the documented API


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@889667 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Karl-Johan Wettin 2009-12-11 15:47:28 +00:00
parent 294b3d04f2
commit 2c675012fe
1 changed files with 3 additions and 3 deletions

View File

@ -224,10 +224,10 @@ public class TestIndicesEquals extends TestCase {
// this is invalid use of the API,
// but if the response differs then it's an indication that something might have changed.
// in 2.9 and 3.0 the two TermDocs-implementations returned different values at this point.
assertEquals("Descripency during invalid use of the TermDocs API, see comments in test code for details.",
aprioriTermDocs.next(), testTermDocs.next());
// assertEquals("Descripency during invalid use of the TermDocs API, see comments in test code for details.",
// aprioriTermDocs.next(), testTermDocs.next());
// start using the API one is supposed to
// start using the API the way one is supposed to use it
t = new Term("", "");
aprioriTermDocs.seek(t);