Skip to content

Commit

Permalink
Removes two disabled tests in tests/integration/security/path-params …
Browse files Browse the repository at this point in the history
…per direction (#7832)

Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
  • Loading branch information
ljnelson authored Oct 19, 2023
1 parent 2a5c690 commit e4e9c4c
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import jakarta.ws.rs.core.Response;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import static org.hamcrest.CoreMatchers.is;
Expand Down Expand Up @@ -92,20 +91,6 @@ void testAdminResource4() {
assertThat(response.getStatus(), is(Status.UNAUTHORIZED_401.code()));
}

@Test
@Disabled
void testAdminResource5() {
Response response = target.apply("/admin/;").request().get();
assertThat(response.getStatus(), is(Status.UNAUTHORIZED_401.code()));
}

@Test
@Disabled
void testAdminResource6() {
Response response = target.apply("/admin/;/").request().get();
assertThat(response.getStatus(), is(Status.UNAUTHORIZED_401.code()));
}

@Test
void testAdminResourceBasicAuth1() {
Response response = target.apply("/admin").request()
Expand Down

0 comments on commit e4e9c4c

Please sign in to comment.