You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2022/01/26 06:12:51 UTC

[tomee] branch master updated: Fix test failure

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

jlmonteiro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new 51b3cac  Fix test failure
51b3cac is described below

commit 51b3cac7a7731e52690a28c95abd890ba19e1bad
Author: Jean-Louis Monteiro <jl...@tomitribe.com>
AuthorDate: Wed Jan 26 07:11:48 2022 +0100

    Fix test failure
---
 .../openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
index 131d05c..3b5c33d 100644
--- a/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
+++ b/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxws-tests/src/test/java/org/apache/openejb/arquillian/tests/jaxws/WebServiceContextEJBTest.java
@@ -76,7 +76,7 @@ public class WebServiceContextEJBTest {
                 .up()
                 .createServletMapping()
                 .servletName("HelloService")
-                .urlPattern("/tomee/Hello")
+                .urlPattern("/account/Hello")
                 .up()
             ;
 
@@ -105,7 +105,7 @@ public class WebServiceContextEJBTest {
 
     @Test
     public void invokePojoAlternate2() throws Exception {
-        final Service service = Service.create(new URL(url.toExternalForm() + "/tomee/Hello?wsdl"), new QName("http://jaxws.tests.arquillian.openejb.apache.org/", "Hello"));
+        final Service service = Service.create(new URL(url.toExternalForm() + "/account/Hello?wsdl"), new QName("http://jaxws.tests.arquillian.openejb.apache.org/", "Hello"));
         final QName portQName = new QName("http://jaxws.tests.arquillian.openejb.apache.org/", "HelloService");
         assertServiceInvocation(service, portQName);
     }