Skip to content

Commit 91c47e2

Browse files
committed
increase default totalWait when getting an activation
1 parent 1a9c4da commit 91c47e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/test/scala/common/WskTestHelpers.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ trait WskTestHelpers extends Matchers {
243243
run: RunResult,
244244
initialWait: Duration = 1.second,
245245
pollPeriod: Duration = 1.second,
246-
totalWait: Duration = 60.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
246+
totalWait: Duration = 120.seconds)(check: ActivationResult => Unit)(implicit wskprops: WskProps): Unit = {
247247
val activationId = wsk.extractActivationId(run)
248248

249249
withClue(s"did not find an activation id in '$run'") {
@@ -275,7 +275,7 @@ trait WskTestHelpers extends Matchers {
275275
}
276276
def withActivation(wsk: ActivationOperations, activationId: String)(check: ActivationResult => Unit)(
277277
implicit wskprops: WskProps): Unit = {
278-
withActivation(wsk, activationId, 1.second, 1.second, 60.seconds)(check)
278+
withActivation(wsk, activationId, 1.second, 1.second, 120.seconds)(check)
279279
}
280280

281281
/**

0 commit comments

Comments
 (0)