Skip to content

Commit

Permalink
Merge pull request #2867 from OndrejKotek/RESTEASY-2971
Browse files Browse the repository at this point in the history
[RESTEASY-2971] FollowRedirectsTest should be annotated with MicroProfileDependent category
  • Loading branch information
jamezp committed Jul 23, 2021
2 parents 9926ab8 + 86bff6b commit b63f16c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.logging.Logger;
import org.jboss.resteasy.category.MicroProfileDependent;
import org.jboss.resteasy.microprofile.client.RestClientBuilderImpl;
import org.jboss.resteasy.test.microprofile.restclient.resource.FollowRedirectsResource;
import org.jboss.resteasy.test.microprofile.restclient.resource.FollowRedirectsService;
Expand All @@ -15,6 +16,7 @@
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;

import javax.ws.rs.core.Response;
Expand All @@ -28,6 +30,7 @@
*/
@RunWith(Arquillian.class)
@RunAsClient
@Category(MicroProfileDependent.class)
public class FollowRedirectsTest {
protected static final Logger LOG = Logger.getLogger(FollowRedirectsTest.class.getName());
private static final String WAR_SERVICE = "followRedirects_service";
Expand Down

0 comments on commit b63f16c

Please sign in to comment.