You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2021/11/15 15:24:35 UTC

[lucene] branch main updated: LUCENE-10085: Rename DocValuesFieldExistsQuery test (#441)

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new 1e5e997  LUCENE-10085: Rename DocValuesFieldExistsQuery test (#441)
1e5e997 is described below

commit 1e5e997880ee30a94f0fc2fd15cc071f9ef43c29
Author: Quentin Pradet <qu...@gmail.com>
AuthorDate: Mon Nov 15 19:24:29 2021 +0400

    LUCENE-10085: Rename DocValuesFieldExistsQuery test (#441)
    
    FieldValueQuery got renamed to DocValuesFieldExistsQuery but the test
    wasn't renamed.
---
 .../{TestFieldValueQuery.java => TestDocValuesFieldExistsQuery.java}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/test/org/apache/lucene/search/TestFieldValueQuery.java b/lucene/core/src/test/org/apache/lucene/search/TestDocValuesFieldExistsQuery.java
similarity index 99%
rename from lucene/core/src/test/org/apache/lucene/search/TestFieldValueQuery.java
rename to lucene/core/src/test/org/apache/lucene/search/TestDocValuesFieldExistsQuery.java
index 38376ad..3bdc4a3 100644
--- a/lucene/core/src/test/org/apache/lucene/search/TestFieldValueQuery.java
+++ b/lucene/core/src/test/org/apache/lucene/search/TestDocValuesFieldExistsQuery.java
@@ -29,7 +29,7 @@ import org.apache.lucene.search.BooleanClause.Occur;
 import org.apache.lucene.store.Directory;
 import org.apache.lucene.util.LuceneTestCase;
 
-public class TestFieldValueQuery extends LuceneTestCase {
+public class TestDocValuesFieldExistsQuery extends LuceneTestCase {
 
   public void testRandom() throws IOException {
     final int iters = atLeast(10);