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 528699431 Replace JUnit 3/4 @Ignore with JUnit 5 @Disabled
528699431 is described below

commit 528699431c0f8dd53d72da31e15ff26a451f83c3
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jun 6 10:37:39 2022 -0400

    Replace JUnit 3/4 @Ignore with JUnit 5 @Disabled
---
 .../org/apache/commons/collections4/queue/SynchronizedQueueTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/collections4/queue/SynchronizedQueueTest.java
 
b/src/test/java/org/apache/commons/collections4/queue/SynchronizedQueueTest.java
index 0d08ffa6f..824b1803b 100644
--- 
a/src/test/java/org/apache/commons/collections4/queue/SynchronizedQueueTest.java
+++ 
b/src/test/java/org/apache/commons/collections4/queue/SynchronizedQueueTest.java
@@ -20,7 +20,7 @@ import java.util.LinkedList;
 import java.util.Queue;
 
 import org.apache.commons.collections4.BulkTest;
-import org.junit.Ignore;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 /**
@@ -49,7 +49,7 @@ public class SynchronizedQueueTest<T> extends 
AbstractQueueTest<T> {
     }
 
     @Test
-    @Ignore("Run once")
+    @Disabled("Run once")
     public void testCreate() throws Exception {
         Queue<T> queue = makeObject();
         writeExternalFormToDisk((java.io.Serializable) queue,

Reply via email to