aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-11-08 15:04:46 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-11-08 15:04:46 +0100
commite7a1e1c0236c7e58093ef5d08793a7ec957ecd0d (patch)
treef4127d79ed824ecce66565e62e42b9613f775b8a /controller-server
parenta728be39e5d52be15df0ce17edb79e94c72f072f (diff)
Update more users of ApplicationStore >_<
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalDeploymentTester.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalDeploymentTester.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalDeploymentTester.java
index 796ddcadb9b..bb0261fa0a7 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalDeploymentTester.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalDeploymentTester.java
@@ -87,8 +87,8 @@ public class InternalDeploymentTester {
*/
public ApplicationVersion newSubmission() {
ApplicationVersion version = jobs.submit(appId, BuildJob.defaultSourceRevision, 2, applicationPackage.zippedContent(), new byte[0]);
- tester.applicationStore().putApplicationPackage(appId, version.id(), applicationPackage.zippedContent());
- tester.applicationStore().putTesterPackage(testerOf(appId), version.id(), new byte[0]);
+ tester.applicationStore().putApplicationPackage(appId, version, applicationPackage.zippedContent());
+ tester.applicationStore().putTesterPackage(testerOf(appId), version, new byte[0]);
return version;
}