summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2019-02-20 14:22:24 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2019-02-20 14:22:24 +0100
commit8085bc4115ea7b1392457e62b1ac1824edb6a90d (patch)
treecd8ad9e332e95defa11466c95f25ec48958338b5 /controller-server
parent85e394563c8b711a1a0307c8ac5953c1817f5629 (diff)
Application fails due to missing tester package
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
index d6365eff807..686cd1c8dfa 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunnerTest.java
@@ -73,10 +73,14 @@ public class InternalStepRunnerTest {
tester.setEndpoints(appId, JobType.productionUsWest1.zone(tester.tester().controller().system()));
tester.setEndpoints(appId, JobType.productionUsEast3.zone(tester.tester().controller().system()));
+ // Let application have an ongoing upgrade when it switches (but kill the jobs, as the tester assumes they aren't running).
+ tester.tester().upgradeSystem(new Version("7.1"));
+ tester.tester().buildService().clear();
+
tester.deployNewSubmission();
tester.deployNewSubmission();
- tester.deployNewPlatform(new Version("7.1"));
+ tester.deployNewPlatform(new Version("7.2"));
tester.jobs().unregister(appId);
try {