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.git
The following commit(s) were added to refs/heads/master by this push:
new 7bd4971 missed the -c arg for wsk cli tests around concurrency (#4132)
7bd4971 is described below
commit 7bd49718232d0381b53794f9353c014a1abfef15
Author: tysonnorris <[email protected]>
AuthorDate: Mon Nov 26 08:11:11 2018 -0800
missed the -c arg for wsk cli tests around concurrency (#4132)
---
tests/src/test/scala/common/WskCliOperations.scala | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/src/test/scala/common/WskCliOperations.scala
b/tests/src/test/scala/common/WskCliOperations.scala
index 5d64022..8c64e64 100644
--- a/tests/src/test/scala/common/WskCliOperations.scala
+++ b/tests/src/test/scala/common/WskCliOperations.scala
@@ -250,6 +250,10 @@ class CliActionOperations(override val wsk: RunCliCmd)
Seq("-l", l.toMB.toString)
} getOrElse Seq.empty
} ++ {
+ concurrency map { c =>
+ Seq("-c", c.toString)
+ } getOrElse Seq.empty
+ } ++ {
shared map { s =>
Seq("--shared", if (s) "yes" else "no")
} getOrElse Seq.empty