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 a7608b2 Fix tests to use proper memory sizes. (#198)
a7608b2 is described below
commit a7608b2db4e547e729a092fd7bc1e0aa383a00c6
Author: Jonathan Springer <jonpspri@gmail.com>
AuthorDate: Thu Jan 18 18:02:49 2018 -0500
Fix tests to use proper memory sizes. (#198)
---
tests/src/test/scala/whisk/core/cli/test/WskBasicUsageTests.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/src/test/scala/whisk/core/cli/test/WskBasicUsageTests.scala b/tests/src/test/scala/whisk/core/cli/test/WskBasicUsageTests.scala
index 58a476e..62bcf63 100644
--- a/tests/src/test/scala/whisk/core/cli/test/WskBasicUsageTests.scala
+++ b/tests/src/test/scala/whisk/core/cli/test/WskBasicUsageTests.scala
@@ -1709,7 +1709,7 @@ class WskBasicUsageTests extends TestHelpers with WskTestHelpers {
// Limits to assert, standard values if CLI omits certain values
val limits = JsObject(
"timeout" -> timeout.getOrElse(STD_DURATION).toMillis.toJson,
- "memory" -> memory.getOrElse(STD_MEMORY).toMB.toInt.toJson,
+ "memory" -> memory.getOrElse(stdMemory).toMB.toInt.toJson,
"logs" -> logs.getOrElse(STD_LOGSIZE).toMB.toInt.toJson)
val name = "ActionLimitTests" + Instant.now.toEpochMilli
@@ -1739,7 +1739,7 @@ class WskBasicUsageTests extends TestHelpers with WskTestHelpers {
// Assert for valid permutations that the values are set correctly
for {
time <- Seq(None, Some(MIN_DURATION), Some(MAX_DURATION))
- mem <- Seq(None, Some(MIN_MEMORY), Some(MAX_MEMORY))
+ mem <- Seq(None, Some(minMemory), Some(maxMemory))
log <- Seq(None, Some(MIN_LOGSIZE), Some(MAX_LOGSIZE))
} testLimit(time, mem, log)
--
To stop receiving notification emails like this one, please contact
['"commits@openwhisk.apache.org" <commits@openwhisk.apache.org>'].
|