You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ju...@apache.org on 2022/09/20 22:49:13 UTC

[lucene] branch main updated: Mute TestKnnVectorQuery#testFilterWithSameScore while we work on a fix

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

julietibs 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 add309bb40a Mute TestKnnVectorQuery#testFilterWithSameScore while we work on a fix
add309bb40a is described below

commit add309bb40a34a60eb3e4c41f9e9b5e63ab2e1af
Author: Julie Tibshirani <ju...@apache.org>
AuthorDate: Tue Sep 20 15:44:10 2022 -0700

    Mute TestKnnVectorQuery#testFilterWithSameScore while we work on a fix
---
 lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java b/lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java
index df7f03f1901..e2dcb785144 100644
--- a/lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java
+++ b/lucene/core/src/test/org/apache/lucene/search/TestKnnVectorQuery.java
@@ -632,6 +632,7 @@ public class TestKnnVectorQuery extends LuceneTestCase {
   }
 
   /** Tests filtering when all vectors have the same score. */
+  @AwaitsFix(bugUrl = "https://github.com/apache/lucene/issues/11787")
   public void testFilterWithSameScore() throws IOException {
     int numDocs = 100;
     int dimension = atLeast(5);