Skip to content

Commit

Permalink
Add NotThreadSafe annotation on failed junit test
Browse files Browse the repository at this point in the history
  • Loading branch information
fpapon committed Jun 13, 2022
1 parent 0531a22 commit 09234bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 73 deletions.
73 changes: 0 additions & 73 deletions integration-tests/meecrowave-support/pom.xml

This file was deleted.

6 changes: 6 additions & 0 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0-1</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*/
package org.apache.shiro.web.filter.authz;

import net.jcip.annotations.NotThreadSafe;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.test.SecurityManagerTestSupport;
Expand All @@ -34,6 +35,7 @@
/**
* Test cases for the {@link AuthorizationFilter} class.
*/
@NotThreadSafe
public class AuthorizationFilterTest extends SecurityManagerTestSupport {

@Test
Expand Down

0 comments on commit 09234bc

Please sign in to comment.