Skip to content

Commit b8c2f4c

Browse files
committed
Removes two disabled tests in tests/integration/security/path-params per direction
Signed-off-by: Laird Nelson <laird.nelson@oracle.com>
1 parent d0a15c1 commit b8c2f4c

File tree

1 file changed

+0
-15
lines changed
  • tests/integration/security/path-params/src/test/java/io/helidon/tests/integration/security/pathparams

1 file changed

+0
-15
lines changed

tests/integration/security/path-params/src/test/java/io/helidon/tests/integration/security/pathparams/AdminTest.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import jakarta.ws.rs.core.Response;
2929
import org.junit.jupiter.api.AfterAll;
3030
import org.junit.jupiter.api.BeforeAll;
31-
import org.junit.jupiter.api.Disabled;
3231
import org.junit.jupiter.api.Test;
3332

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

95-
@Test
96-
@Disabled
97-
void testAdminResource5() {
98-
Response response = target.apply("/admin/;").request().get();
99-
assertThat(response.getStatus(), is(Status.UNAUTHORIZED_401.code()));
100-
}
101-
102-
@Test
103-
@Disabled
104-
void testAdminResource6() {
105-
Response response = target.apply("/admin/;/").request().get();
106-
assertThat(response.getStatus(), is(Status.UNAUTHORIZED_401.code()));
107-
}
108-
10994
@Test
11095
void testAdminResourceBasicAuth1() {
11196
Response response = target.apply("/admin").request()

0 commit comments

Comments
 (0)