This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new 86c842ea91 Fix for PR #5839 to ensure isExperimental coverage
86c842ea91 is described below
commit 86c842ea919fa7fd68314783d530878e3510b085
Author: Christopher Tubbs <[email protected]>
AuthorDate: Thu Aug 28 19:22:12 2025 -0400
Fix for PR #5839 to ensure isExperimental coverage
* Restore test case for ensuring experimental annotation works properly
on an experimental property
---
core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java
b/core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java
index 6d5cc19309..1a4b25d7b4 100644
--- a/core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java
+++ b/core/src/test/java/org/apache/accumulo/core/conf/PropertyTest.java
@@ -250,7 +250,7 @@ public class PropertyTest {
@Test
public void testAnnotations() {
- assertFalse(Property.GENERAL_VOLUME_CHOOSER.isExperimental());
+ assertTrue(Property.INSTANCE_CRYPTO_FACTORY.isExperimental());
assertFalse(Property.TABLE_SAMPLER.isExperimental());
assertTrue(Property.INSTANCE_SECRET.isSensitive());