Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05878106F7 for ; Fri, 28 Mar 2014 13:45:35 +0000 (UTC) Received: (qmail 10888 invoked by uid 500); 28 Mar 2014 13:45:33 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 10717 invoked by uid 500); 28 Mar 2014 13:45:30 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 10681 invoked by uid 99); 28 Mar 2014 13:45:27 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2014 13:45:27 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2AB1B8B16AA; Fri, 28 Mar 2014 13:45:27 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkulp@apache.org To: commits@cxf.apache.org Date: Fri, 28 Mar 2014 13:45:27 -0000 Message-Id: <30aa678c9aa9446bae5a3fe1d6996808@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: Don't check the prefixes Repository: cxf Updated Branches: refs/heads/master 11ecb9925 -> b023ff3f9 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/8605382a Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/8605382a Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/8605382a Branch: refs/heads/master Commit: 8605382a629f966e6f34a0f220bf4d193b96f6a8 Parents: 11ecb99 Author: Daniel Kulp Authored: Thu Mar 27 16:58:38 2014 -0400 Committer: Daniel Kulp Committed: Fri Mar 28 09:43:19 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/8605382a/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