Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D1921200CAA for ; Tue, 9 May 2017 15:27:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D0586160BC8; Tue, 9 May 2017 13:27:16 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 21A54160BCB for ; Tue, 9 May 2017 15:27:15 +0200 (CEST) Received: (qmail 94373 invoked by uid 500); 9 May 2017 13:27:15 -0000 Mailing-List: contact commits-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list commits@brooklyn.apache.org Received: (qmail 94343 invoked by uid 99); 9 May 2017 13:27:15 -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; Tue, 09 May 2017 13:27:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 19012E9671; Tue, 9 May 2017 13:27:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: heneveld@apache.org To: commits@brooklyn.apache.org Date: Tue, 09 May 2017 13:27:18 -0000 Message-Id: <9fd96bbea1574c7ea18fd1015b3877f1@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [4/6] brooklyn-client git commit: fix misleading string description in test, following PR review archived-at: Tue, 09 May 2017 13:27:17 -0000 fix misleading string description in test, following PR review Project: http://git-wip-us.apache.org/repos/asf/brooklyn-client/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-client/commit/51c05d80 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-client/tree/51c05d80 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-client/diff/51c05d80 Branch: refs/heads/master Commit: 51c05d80402d9fd1550b6e0f482f381f53489873 Parents: 0260945 Author: Alex Heneveld Authored: Tue May 9 14:22:41 2017 +0100 Committer: Alex Heneveld Committed: Tue May 9 14:22:41 2017 +0100 ---------------------------------------------------------------------- .../org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-client/blob/51c05d80/java/src/test/java/org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java ---------------------------------------------------------------------- diff --git a/java/src/test/java/org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java b/java/src/test/java/org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java index 4c5babe..9dd22fa 100644 --- a/java/src/test/java/org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java +++ b/java/src/test/java/org/apache/brooklyn/rest/client/BrooklynApiGetEntityTest.java @@ -53,7 +53,7 @@ public class BrooklynApiGetEntityTest { @Test public void testGetEntityIgnoresExtraFields() { BrooklynApi.getEntity( - new BuiltResponse(200, null, "{ foo: \"This should cause an error\" }", null), + new BuiltResponse(200, null, "{ foo: \"This unknown field should be silently ignored\" }", null), TaskSummary.class); }