You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2019/02/01 16:26:37 UTC

[tomee] 12/16: TOMEE-2408 - Workaround for OpenAPI issue (GERONIMO-6690).

This is an automated email from the ASF dual-hosted git repository.

radcortez pushed a commit to branch TOMEE-2408
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit ccc326f0e406571e78c734e04e09ece070358a6c
Author: Roberto Cortez <ra...@yahoo.com>
AuthorDate: Wed Jan 23 15:50:51 2019 +0000

    TOMEE-2408 - Workaround for OpenAPI issue (GERONIMO-6690).
---
 .../openejb/arquillian/tests/jaxrs/staticresources/TheResource.java     | 2 +-
 .../openejb/arquillian/tests/jaxrs/webxmloverride/TheResource.java      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/staticresources/TheResource.java b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/staticresources/TheResource.java
index 95051fd..1219bfa 100644
--- a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/staticresources/TheResource.java
+++ b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/staticresources/TheResource.java
@@ -21,7 +21,7 @@ import javax.ws.rs.GET;
 import javax.ws.rs.Path;
 import javax.ws.rs.core.Context;
 
-@Path("/")
+@Path("")
 public class TheResource {
     @GET
     @Path("the")
diff --git a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/webxmloverride/TheResource.java b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/webxmloverride/TheResource.java
index c15814a..542dde5 100644
--- a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/webxmloverride/TheResource.java
+++ b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxrs/webxmloverride/TheResource.java
@@ -19,7 +19,7 @@ package org.apache.openejb.arquillian.tests.jaxrs.webxmloverride;
 import javax.ws.rs.GET;
 import javax.ws.rs.Path;
 
-@Path("/")
+@Path("")
 public class TheResource {
     @GET
     @Path("touch")