Skip to content

Commit f933685

Browse files
committed
Fix test case error
1 parent d15bc22 commit f933685

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/src/test/scala/org/apache/openwhisk/core/containerpool/test/ContainerPoolTests.scala

+2-3
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,8 @@ class ContainerPoolTests
329329
val feed = TestProbe()
330330

331331
val pool =
332-
system.actorOf(
333-
ContainerPool
334-
.props(factory, poolConfig(MemoryLimit.STD_MEMORY), feed.ref, List(PrewarmingConfig(1, exec, memoryLimit))))
332+
system.actorOf(ContainerPool
333+
.props(factory, poolConfig(MemoryLimit.STD_MEMORY * 2), feed.ref, List(PrewarmingConfig(1, exec, memoryLimit))))
335334
containers(0).expectMsg(Start(exec, memoryLimit))
336335
containers(0).send(pool, NeedWork(preWarmedData(exec.kind)))
337336
pool ! runMessage

0 commit comments

Comments
 (0)