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 EC6C218537 for ; Mon, 1 Feb 2016 17:52:08 +0000 (UTC) Received: (qmail 85658 invoked by uid 500); 1 Feb 2016 17:52:08 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 85586 invoked by uid 500); 1 Feb 2016 17:52:08 -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 85003 invoked by uid 99); 1 Feb 2016 17:52:08 -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:52:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 693BDE0994; Mon, 1 Feb 2016 17:52:08 +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:52:37 -0000 Message-Id: <7e8ad4c14ec94629bd5c239bd7510a47@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [31/36] brooklyn-ui git commit: BROOKLYN-162 - cleanup and test fixes following refectoring, esp the software/base changes BROOKLYN-162 - cleanup and test fixes following refectoring, esp the software/base changes Project: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/commit/815ef377 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/tree/815ef377 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-ui/diff/815ef377 Branch: refs/heads/0.8.0-incubating Commit: 815ef3773bc4b6bc8af659c143f27e377a45f672 Parents: 30a1d8f Author: Alex Heneveld Authored: Wed Aug 19 01:00:43 2015 +0100 Committer: Alex Heneveld Committed: Wed Aug 19 02:13:26 2015 +0100 ---------------------------------------------------------------------- usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-ui/blob/815ef377/usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js ---------------------------------------------------------------------- diff --git a/usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js b/usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js index b1bd2fd..222df70 100644 --- a/usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js +++ b/usage/jsgui/src/test/javascript/specs/model/sensor-summary-spec.js @@ -32,7 +32,7 @@ define(['model/sensor-summary'], function (SensorSummary) { expect(filteredSensors.length).toBe(1) var ourSensor = filteredSensors.pop() expect(ourSensor.get("name")).toBe('service.state') - expect(ourSensor.get("type")).toBe('org.apache.brooklyn.entity.software.base.Lifecycle') + expect(ourSensor.get("type")).toBe('org.apache.brooklyn.entity.lifecycle.Lifecycle') expect(ourSensor.get("description")).toBe('Service lifecycle state') expect(ourSensor.getLinkByName('self')).toBe('fixtures/service-state.json') expect(ourSensor.getLinkByName()).toBe(undefined)