From commits-return-6364-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Thu Dec 6 00:13:47 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 3C41818067A for ; Thu, 6 Dec 2018 00:13:47 +0100 (CET) Received: (qmail 27919 invoked by uid 500); 5 Dec 2018 23:13:46 -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 27910 invoked by uid 99); 5 Dec 2018 23:13:46 -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; Wed, 05 Dec 2018 23:13:46 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DC00D82F16; Wed, 5 Dec 2018 23:13:45 +0000 (UTC) Date: Wed, 05 Dec 2018 23:13:45 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-runtime-swift] branch master updated: Change whisk to org.apache.openwhisk (#88) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154405162584.9271.7680757151553137493@gitbox.apache.org> From: dgrove@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-runtime-swift X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4f7edbee56084227da04b7a8fb2aef7cacf1809f X-Git-Newrev: 0dbb511bb81d9e53c5b5191a00cc120986c9f937 X-Git-Rev: 0dbb511bb81d9e53c5b5191a00cc120986c9f937 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. dgrove pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-swift.git The following commit(s) were added to refs/heads/master by this push: new 0dbb511 Change whisk to org.apache.openwhisk (#88) 0dbb511 is described below commit 0dbb511bb81d9e53c5b5191a00cc120986c9f937 Author: Vincent AuthorDate: Wed Dec 5 18:13:41 2018 -0500 Change whisk to org.apache.openwhisk (#88) --- tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala b/tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala index a09460f..0dd1b2f 100644 --- a/tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala +++ b/tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala @@ -67,8 +67,8 @@ abstract class SwiftSDKTests extends TestHelpers with WskTestHelpers with WskAct activation.response.result.get.fields("activationId").toString.length should be >= 32 // check for "date" field that comes from invoking the date action - whisk.utils.JsHelpers.fieldPathExists(activation.response.result.get, "response", "result", "date") should be( - true) + org.apache.openwhisk.utils.JsHelpers + .fieldPathExists(activation.response.result.get, "response", "result", "date") should be(true) } } @@ -89,7 +89,7 @@ abstract class SwiftSDKTests extends TestHelpers with WskTestHelpers with WskAct val run = wsk.action.invoke(actionName, params) withActivation(wsk.activation, run, initialWait = 5 seconds, totalWait = activationPollDuration) { activation => // should not have a "response" - whisk.utils.JsHelpers.fieldPathExists(activation.response.result.get, "response") shouldBe false + org.apache.openwhisk.utils.JsHelpers.fieldPathExists(activation.response.result.get, "response") shouldBe false // should have a field named "activationId" which is the date action's activationId activation.response.result.get.fields("activationId").toString.length should be >= 32