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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new 2c52ed64 Bump org.apache.commons:commons-collections4 from 4.4 to 
4.5.0-M2
2c52ed64 is described below

commit 2c52ed64ac9a17346de8a1cb59f65c5f8164f6f1
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Aug 30 22:29:52 2024 -0400

    Bump org.apache.commons:commons-collections4 from 4.4 to 4.5.0-M2
---
 pom.xml                                                     |  9 ++++-----
 src/changes/changes.xml                                     |  2 +-
 .../java/org/apache/commons/beanutils2/BeanMapTestCase.java | 13 +++++++++----
 3 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2f6e3359..4f05563d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -58,15 +58,14 @@
     <!-- JaCoCo: Don't make code coverage worse than: -->
     <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
     <commons.jacoco.classRatio>0.95</commons.jacoco.classRatio>
-    <commons.jacoco.instructionRatio>0.70</commons.jacoco.instructionRatio>
+    <commons.jacoco.instructionRatio>0.69</commons.jacoco.instructionRatio>
     <!-- methodRatio is 0.76 on Java 8, and 0.77 on Java 11 and up. -->
-    <commons.jacoco.methodRatio>0.76</commons.jacoco.methodRatio>
+    <commons.jacoco.methodRatio>0.75</commons.jacoco.methodRatio>
     <commons.jacoco.branchRatio>0.67</commons.jacoco.branchRatio>
     <commons.jacoco.complexityRatio>0.61</commons.jacoco.complexityRatio>
-    <commons.jacoco.lineRatio>0.73</commons.jacoco.lineRatio>
+    <commons.jacoco.lineRatio>0.72</commons.jacoco.lineRatio>
     <!-- Dependencies -->
-<!--    
<commons.collections.version>4.5.0-M3-SNAPSHOT</commons.collections.version>-->
-    <commons.collections.version>4.4</commons.collections.version>
+    <commons.collections.version>4.5.0-M2</commons.collections.version>
   </properties>
 
   <issueManagement>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 52e96501..f1bc3376 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -108,7 +108,7 @@
         Fix SpotBugs [ERROR] Medium: 
org.apache.commons.beanutils2.WrapDynaClass.getDynaProperties() may expose 
internal representation by returning WrapDynaClass.properties 
[org.apache.commons.beanutils2.WrapDynaClass] At WrapDynaClass.java:[line 172] 
EI_EXPOSE_REP.
       </action>
       <action dev="ggregory" type="fix" due-to="Melloware, sebbASF, Gary 
Gregory, Michal Landsman">
-        Replace Commons Collections Test Framework 3.2.2 with 4.4 #40.
+        Replace Commons Collections Test Framework 3.2.2 with 4.5.0-M2 #40.
       </action>
       <action dev="ggregory" type="fix" due-to="Gary Gregory">
         Provide error index in ConversionException message in 
DateTimeConverter.parse(Class, Class, String, DateFormat).
diff --git a/src/test/java/org/apache/commons/beanutils2/BeanMapTestCase.java 
b/src/test/java/org/apache/commons/beanutils2/BeanMapTestCase.java
index 615ad7e4..9e6b38ba 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanMapTestCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanMapTestCase.java
@@ -16,6 +16,11 @@
  */
 package org.apache.commons.beanutils2;
 
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
 import java.io.Serializable;
 import java.lang.reflect.InvocationTargetException;
 import java.lang.reflect.Method;
@@ -29,6 +34,10 @@ import org.apache.commons.collections4.map.AbstractMapTest;
  */
 public class BeanMapTestCase extends AbstractMapTest<String, Object> {
 
+    public BeanMapTestCase() {
+        super("BeanMapTestCase");
+    }
+
     public static class BeanThrowingExceptions extends BeanWithProperties {
         private static final long serialVersionUID = 1L;
 
@@ -156,10 +165,6 @@ public class BeanMapTestCase extends 
AbstractMapTest<String, Object> {
      **/
     private final Object objectInFullMap = new Object();
 
-    public BeanMapTestCase(final String testName) {
-        super(testName);
-    }
-
     @Override
     public Object[] getNewSampleValues() {
         final Object[] values = {

Reply via email to