This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch branch_9_10
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9_10 by this push:
new 5c30c3ca1ab Fix failing errorprone rule in FilterFunctionTest.java
5c30c3ca1ab is described below
commit 5c30c3ca1abf6323e899f89cb6b7f6aa6f9b60c0
Author: Jan Høydahl <[email protected]>
AuthorDate: Tue Jan 6 11:21:09 2026 +0100
Fix failing errorprone rule in FilterFunctionTest.java
---
.../org/apache/solr/analytics/function/mapping/FilterFunctionTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/solr/modules/analytics/src/test/org/apache/solr/analytics/function/mapping/FilterFunctionTest.java
b/solr/modules/analytics/src/test/org/apache/solr/analytics/function/mapping/FilterFunctionTest.java
index 62c7d278d9f..271163efc4a 100644
---
a/solr/modules/analytics/src/test/org/apache/solr/analytics/function/mapping/FilterFunctionTest.java
+++
b/solr/modules/analytics/src/test/org/apache/solr/analytics/function/mapping/FilterFunctionTest.java
@@ -715,7 +715,7 @@ public class FilterFunctionTest extends SolrTestCaseJ4 {
fail("There should be no values to stream");
});
- val.setValues(50.343F, -74.9874F, 2.34233242E+9f);
+ val.setValues(50.343F, -74.9874F, 2.3423324E+9f);
filter.setExists(false);
func.streamFloats(
value -> {