This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/main by this push:
new 69f28c4c9 bugfix(test): DelegatingSessionTest isolated
69f28c4c9 is described below
commit 69f28c4c9e1654255bacb1ddfcec0bb3ab1d3d70
Author: lprimak <[email protected]>
AuthorDate: Wed Jun 5 20:27:11 2024 -0700
bugfix(test): DelegatingSessionTest isolated
---
.../test/java/org/apache/shiro/session/mgt/DelegatingSessionTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/core/src/test/java/org/apache/shiro/session/mgt/DelegatingSessionTest.java
b/core/src/test/java/org/apache/shiro/session/mgt/DelegatingSessionTest.java
index 15a3284ff..f336a85d6 100644
--- a/core/src/test/java/org/apache/shiro/session/mgt/DelegatingSessionTest.java
+++ b/core/src/test/java/org/apache/shiro/session/mgt/DelegatingSessionTest.java
@@ -23,6 +23,7 @@ import org.apache.shiro.util.ThreadContext;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.parallel.Isolated;
import java.io.Serializable;
@@ -32,6 +33,7 @@ import static org.junit.jupiter.api.Assertions.fail;
/**
* Unit test for the {@link DelegatingSession} class.
*/
+@Isolated
public class DelegatingSessionTest {
DelegatingSession session;