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-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 433a50e3e Disable new test
433a50e3e is described below

commit 433a50e3ea4364651b44b9a9038322464d130f93
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Oct 18 11:37:57 2024 -0400

    Disable new test
---
 .../java/org/apache/commons/collections4/bag/CollectionBagTest.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/src/test/java/org/apache/commons/collections4/bag/CollectionBagTest.java 
b/src/test/java/org/apache/commons/collections4/bag/CollectionBagTest.java
index bd6829b72..6c3022291 100644
--- a/src/test/java/org/apache/commons/collections4/bag/CollectionBagTest.java
+++ b/src/test/java/org/apache/commons/collections4/bag/CollectionBagTest.java
@@ -29,6 +29,7 @@ import org.apache.commons.collections4.Bag;
 import org.apache.commons.collections4.Predicate;
 import org.apache.commons.collections4.collection.AbstractCollectionTest;
 import org.apache.commons.collections4.functors.NonePredicate;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 /**
@@ -40,6 +41,7 @@ import org.junit.jupiter.api.Test;
 public class CollectionBagTest<T> extends AbstractCollectionTest<T> {
 
     @Test
+    @Disabled
     public void testAdd_Always() throws Throwable {
         TreeBag<Predicate<Object>> treeBagOfPredicateOfObject = new 
TreeBag<>();
         CollectionBag<Predicate<Object>> collectionBagOfPredicateOfObject = 
new CollectionBag<>(treeBagOfPredicateOfObject);

Reply via email to