Skip to content

Commit 7337d78

Browse files
author
Brendan Doyle
committed
fix test compilation
1 parent 0e34da6 commit 7337d78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/src/test/scala/org/apache/openwhisk/core/containerpool/v2/test/FunctionPullingContainerProxyTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class FunctionPullingContainerProxyTests
209209

210210
/** get WhiskAction*/
211211
def getWhiskAction(response: Future[WhiskAction]) = LoggedFunction {
212-
(_: ArtifactStore[WhiskEntity], _: DocId, _: DocRevision, _: Boolean) =>
212+
(_: ArtifactStore[WhiskEntity], _: DocId, _: DocRevision, _: Boolean, _: Boolean) =>
213213
response
214214
}
215215

tests/src/test/scala/org/apache/openwhisk/core/scheduler/queue/test/QueueManagerTests.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class QueueManagerTests
154154

155155
/**get WhiskActionMetaData*/
156156
def getWhiskActionMetaData(meta: Future[WhiskActionMetaData]) = LoggedFunction {
157-
(_: ArtifactStore[WhiskEntity], _: DocId, _: DocRevision, _: Boolean) =>
157+
(_: ArtifactStore[WhiskEntity], _: DocId, _: DocRevision, _: Boolean, _: Boolean) =>
158158
meta
159159
}
160160

@@ -496,7 +496,7 @@ class QueueManagerTests
496496
val finalFqn = newFqn.copy(version = Some(SemVer(0, 0, 3)))
497497
val finalRevision = DocRevision("3-test-revision")
498498
// simulate the case that action is updated again while fetch it from database
499-
def newGet(store: ArtifactStore[WhiskEntity], docId: DocId, docRevision: DocRevision, fromCache: Boolean) = {
499+
def newGet(store: ArtifactStore[WhiskEntity], docId: DocId, docRevision: DocRevision, fromCache: Boolean, ignoreMissingAttachment: Boolean) = {
500500
if (docRevision == DocRevision.empty) {
501501
Future(convertToMetaData(action.copy(version = SemVer(0, 0, 3)).toWhiskAction.revision(finalRevision)))
502502
} else

0 commit comments

Comments
 (0)