This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git


The following commit(s) were added to refs/heads/master by this push:
     new f545a12  add go, now that it is available at 
https://openwhisk.ng.bluemix.net/ (#1038)
f545a12 is described below

commit f545a12a900766144a4fe210cada6ec1b58d7476
Author: TPei <[email protected]>
AuthorDate: Thu Feb 21 18:24:43 2019 +0100

    add go, now that it is available at https://openwhisk.ng.bluemix.net/ 
(#1038)
---
 runtimes/runtimes_test.go | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/runtimes/runtimes_test.go b/runtimes/runtimes_test.go
index ba5f795..84d6665 100644
--- a/runtimes/runtimes_test.go
+++ b/runtimes/runtimes_test.go
@@ -31,13 +31,12 @@ func TestParseOpenWhisk(t *testing.T) {
        converted := ConvertToMap(openwhisk)
        println(converted["nodejs"])
        println(converted["python"])
-       //println(converted["go"])
+       println(converted["go"])
        assert.Equal(t, 3, len(converted["nodejs"]), "not expected length")
        assert.Equal(t, 3, len(converted["php"]), "not expected length")
        assert.Equal(t, 1, len(converted["java"]), "not expected length")
        assert.Equal(t, 6, len(converted["python"]), "not expected length")
        assert.Equal(t, 1, len(converted["ruby"]), "not expected length")
        assert.Equal(t, 3, len(converted["swift"]), "not expected length")
-       // cannot pass this test until it is deployed in OpenWhisk
-       //assert.Equal(t, 2, len(converted["go"]), "not expected length")
+       assert.Equal(t, 1, len(converted["go"]), "not expected length")
 }

Reply via email to