Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 336A818624 for ; Mon, 1 Feb 2016 17:55:28 +0000 (UTC) Received: (qmail 59206 invoked by uid 500); 1 Feb 2016 17:48:48 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 59142 invoked by uid 500); 1 Feb 2016 17:48:48 -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 58174 invoked by uid 99); 1 Feb 2016 17:48:48 -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, 01 Feb 2016 17:48:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4A597E0942; Mon, 1 Feb 2016 17:48:48 +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: Mon, 01 Feb 2016 17:49:23 -0000 Message-Id: <45c2fa81698c44d380d851ae90bf6642@git.apache.org> In-Reply-To: <1a18c9aa747f4e9e8f7ed70bc5a7aa7f@git.apache.org> References: <1a18c9aa747f4e9e8f7ed70bc5a7aa7f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [37/50] brooklyn-server git commit: Fixing CatalogResourceTest because RedisStore switched to new entity interface implementation Fixing CatalogResourceTest because RedisStore switched to new entity interface implementation Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/73584177 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/73584177 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/73584177 Branch: refs/heads/0.5.0 Commit: 73584177bc5c522e557d637594c644e1c8b4ee3d Parents: 32d1432 Author: Andrew Kennedy Authored: Mon Apr 22 22:29:00 2013 +0100 Committer: Andrew Kennedy Committed: Wed Apr 24 13:25:44 2013 +0100 ---------------------------------------------------------------------- .../test/java/brooklyn/rest/resources/CatalogResourceTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/73584177/usage/rest/src/test/java/brooklyn/rest/resources/CatalogResourceTest.java ---------------------------------------------------------------------- diff --git a/usage/rest/src/test/java/brooklyn/rest/resources/CatalogResourceTest.java b/usage/rest/src/test/java/brooklyn/rest/resources/CatalogResourceTest.java index d6aa435..25a8bb7 100644 --- a/usage/rest/src/test/java/brooklyn/rest/resources/CatalogResourceTest.java +++ b/usage/rest/src/test/java/brooklyn/rest/resources/CatalogResourceTest.java @@ -96,7 +96,8 @@ public class CatalogResourceTest extends BrooklynRestResourceTest { @Test public void testGetCatalogEntityDetails() { CatalogEntitySummary details = client().resource( - URI.create("/v1/catalog/entities/brooklyn.entity.nosql.redis.RedisStore")) + // FIXME entity ids should use interface class not imp[lementation + URI.create("/v1/catalog/entities/brooklyn.entity.nosql.redis.RedisStoreImpl")) .get(CatalogEntitySummary.class); assertTrue(details.toString().contains("redis.port")); assertTrue(details.toString().contains("run.dir"));