This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new 3a62a88ee2f Fix failing errorprone rule in FilterFunctionTest.java
3a62a88ee2f is described below
commit 3a62a88ee2f85cedb07ffbc28fa682bd6bed8293
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 -> {