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 317ED180B7 for ; Mon, 7 Mar 2016 00:57:14 +0000 (UTC) Received: (qmail 96941 invoked by uid 500); 7 Mar 2016 00:57:14 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 96879 invoked by uid 500); 7 Mar 2016 00:57:13 -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 96870 invoked by uid 99); 7 Mar 2016 00:57:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Mar 2016 00:57:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8EC5FDFBD7; Mon, 7 Mar 2016 00:57:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ffang@apache.org To: commits@cxf.apache.org Message-Id: <0c2d78e3f0854141a76ba9571edf67c0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: revert unwanted change Date: Mon, 7 Mar 2016 00:57:13 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master 2e9bf6487 -> bff065607 revert unwanted change Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/bff06560 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/bff06560 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/bff06560 Branch: refs/heads/master Commit: bff065607c7d5e6a6918179e977e27f346259906 Parents: 2e9bf64 Author: Freeman Fang Authored: Mon Mar 7 08:56:27 2016 +0800 Committer: Freeman Fang Committed: Mon Mar 7 08:56:27 2016 +0800 ---------------------------------------------------------------------- .../java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/bff06560/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java index 8ad675e..d02e117 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java @@ -201,7 +201,7 @@ public class JAXRSAsyncClientTest extends AbstractBusClientServerTestBase { @Test public void testNonExistentJaxrs20WithPost() throws Exception { Client client = ClientBuilder.newClient(); - WebTarget target = client.target("http://test-test/"); + WebTarget target = client.target("http://test.test/"); Invocation.Builder builder = target.request(); Entity entity = Entity.entity("entity", MediaType.WILDCARD_TYPE); Invocation invocation = builder.buildPost(entity);