Skip to content

Commit

Permalink
WFLY-19228 JWTClientIT is not an Arquillian test
Browse files Browse the repository at this point in the history
  • Loading branch information
rhusar committed Apr 11, 2024
1 parent 2532b77 commit f284d21
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions microprofile-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,6 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.junit.Arquillian;
import org.junit.Test;
import org.junit.runner.RunWith;


/**
Expand All @@ -44,8 +41,6 @@
*
* @author <a href="mailto:[email protected]">Darran Lofthouse</a>
*/
@RunWith(Arquillian.class)
@RunAsClient
public class JWTClientIT {
private static final String SUBSCRIPTION = "subscription";
private static final String BIRTHDAY = "birthday";
Expand All @@ -61,8 +56,6 @@ public class JWTClientIT {
private static final String AUTHORIZATION = "Authorization";
private static final String BEARER = "Bearer";

private static final String APP_NAME = "microprofile-jwt";

private final CloseableHttpClient httpClient = HttpClientBuilder.create().build();

@Test
Expand Down

0 comments on commit f284d21

Please sign in to comment.