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 <[email protected]>
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

Reply via email to