You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2014/04/02 08:26:07 UTC

[11/21] git commit: Don't check the prefixes

Don't check the prefixes


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/0e45ee67
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/0e45ee67
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/0e45ee67

Branch: refs/heads/2.7.x-fixes
Commit: 0e45ee67e5383f8dedabdbf7f5af464248798c0c
Parents: 81f4d58
Author: Daniel Kulp <dk...@apache.org>
Authored: Thu Mar 27 16:58:38 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Wed Apr 2 02:14:55 2014 -0400

----------------------------------------------------------------------
 .../org/apache/cxf/systest/jaxws/LocatorClientServerTest.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/0e45ee67/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/LocatorClientServerTest.java
----------------------------------------------------------------------
diff --git a/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/LocatorClientServerTest.java b/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/LocatorClientServerTest.java
index 91f32d9..1288e5e 100644
--- a/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/LocatorClientServerTest.java
+++ b/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/LocatorClientServerTest.java
@@ -116,7 +116,7 @@ public class LocatorClientServerTest extends AbstractBusClientServerTestBase {
         W3CEndpointReference epr = port.lookupEndpoint(new QName("http://service/1", "Number"));
         String eprString = epr.toString();
         assertTrue(eprString.contains("Metadata"));
-        assertTrue(eprString.contains("wsdli:wsdlLocation=\"http://service/1 wsdlLoc\""));
+        assertTrue(eprString.contains("wsdlLocation=\"http://service/1 wsdlLoc\""));
     }
     
     @Test
@@ -131,7 +131,8 @@ public class LocatorClientServerTest extends AbstractBusClientServerTestBase {
         W3CEndpointReference epr = port.lookupEndpoint(new QName("http://service/2", "Number"));
         String eprString = epr.toString();
         assertTrue(eprString.contains("Metadata"));
-        assertTrue(eprString.contains("wsdli:wsdlLocation=\"wsdlLoc\""));
+        System.out.println(eprString);
+        assertTrue(eprString.contains("wsdlLocation=\"wsdlLoc\""));
     }
 
     @Test