You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2019/05/06 19:03:02 UTC

[directory-ldap-api] branch master updated: Trying to fix the failing test

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

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-ldap-api.git


The following commit(s) were added to refs/heads/master by this push:
     new b9cb116  Trying to fix the failing test
b9cb116 is described below

commit b9cb1161c965ff1cad3d92e90c3a33e15c3dfe3f
Author: emmanuel lecharny <el...@apache.org>
AuthorDate: Mon May 6 21:02:57 2019 +0200

    Trying to fix the failing test
---
 .../apache/directory/api/util/exception/RuntimeMultiExceptionTest.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/util/src/test/java/org/apache/directory/api/util/exception/RuntimeMultiExceptionTest.java b/util/src/test/java/org/apache/directory/api/util/exception/RuntimeMultiExceptionTest.java
index f2833e3..ffdae6d 100644
--- a/util/src/test/java/org/apache/directory/api/util/exception/RuntimeMultiExceptionTest.java
+++ b/util/src/test/java/org/apache/directory/api/util/exception/RuntimeMultiExceptionTest.java
@@ -32,11 +32,14 @@ import java.io.StringWriter;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.parallel.Execution;
+import org.junit.jupiter.api.parallel.ExecutionMode;
 
 /**
  * 
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
+@Execution(ExecutionMode.SAME_THREAD)
 public class RuntimeMultiExceptionTest
 {
     private PrintStream originalOut;