From commits-return-3953-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Tue Mar 20 22:17:59 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id C88C218067E for ; Tue, 20 Mar 2018 22:17:58 +0100 (CET) Received: (qmail 72737 invoked by uid 500); 20 Mar 2018 21:17:57 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 72728 invoked by uid 99); 20 Mar 2018 21:17:57 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Mar 2018 21:17:57 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 52C65807D2; Tue, 20 Mar 2018 21:17:57 +0000 (UTC) Date: Tue, 20 Mar 2018 21:17:57 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-cli] branch master updated: Fix test to not compare namespace to subject (#248) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152158067727.27221.14175299581610654668@gitbox.apache.org> From: dubeejw@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-cli X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 6ca5a6eecab0d60991db4f020a48515b6582e590 X-Git-Newrev: 956bd84f83fbf70f6775643302b7c2f0542cfcea X-Git-Rev: 956bd84f83fbf70f6775643302b7c2f0542cfcea X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. dubeejw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-cli.git The following commit(s) were added to refs/heads/master by this push: new 956bd84 Fix test to not compare namespace to subject (#248) 956bd84 is described below commit 956bd84f83fbf70f6775643302b7c2f0542cfcea Author: James Dubee AuthorDate: Tue Mar 20 17:17:55 2018 -0400 Fix test to not compare namespace to subject (#248) --- tests/src/test/scala/system/basic/WskBasicTests.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/test/scala/system/basic/WskBasicTests.scala b/tests/src/test/scala/system/basic/WskBasicTests.scala index 04ad24d..3689f3b 100644 --- a/tests/src/test/scala/system/basic/WskBasicTests.scala +++ b/tests/src/test/scala/system/basic/WskBasicTests.scala @@ -947,7 +947,7 @@ class WskBasicTests extends TestHelpers with WskTestHelpers { getJSONFromResponse(result.stdout, true).fields("name").convertTo[String] shouldBe triggerName getJSONFromResponse(result.stdout, true).fields("version").convertTo[String] shouldBe "0.0.1" getJSONFromResponse(result.stdout, true).fields("publish") shouldBe false.toJson - getJSONFromResponse(result.stdout, true).fields("subject").convertTo[String] shouldBe ns + getJSONFromResponse(result.stdout, true).fields("subject").convertTo[String].length should not be (0) getJSONFromResponse(result.stdout, true).fields("activationId").convertTo[String] shouldBe activation.activationId getJSONFromResponse(result.stdout, true).fields("start") should not be JsObject() getJSONFromResponse(result.stdout, true).fields("end") shouldBe 0.toJson -- To stop receiving notification emails like this one, please contact dubeejw@apache.org.