aboutsummaryrefslogtreecommitdiffstats
path: root/configserver
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-05-04 16:40:21 +0200
committerJon Bratseth <bratseth@gmail.com>2022-05-04 16:40:21 +0200
commit68c238a9af5f6aec83a2ec3fb0b088f4eef0bcb8 (patch)
treebd32861bbe3bfa160c51e04399f1bc39124d8ab5 /configserver
parenteb4f0ab84883e89f6cf397a37b3840719e0843e6 (diff)
Correct host name sequence
Diffstat (limited to 'configserver')
-rw-r--r--configserver/src/test/java/com/yahoo/vespa/config/server/deploy/HostedDeployNodeAllocationTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/configserver/src/test/java/com/yahoo/vespa/config/server/deploy/HostedDeployNodeAllocationTest.java b/configserver/src/test/java/com/yahoo/vespa/config/server/deploy/HostedDeployNodeAllocationTest.java
index c8b03a68bf5..e546569b255 100644
--- a/configserver/src/test/java/com/yahoo/vespa/config/server/deploy/HostedDeployNodeAllocationTest.java
+++ b/configserver/src/test/java/com/yahoo/vespa/config/server/deploy/HostedDeployNodeAllocationTest.java
@@ -82,8 +82,8 @@ public class HostedDeployNodeAllocationTest {
host("host2", resources(3), 2, "7.2", cluster));
} else if (invocation == 1) { // Building 7.2
invocation++;
- return List.of(host("host3", resources(2), 2, "7.2", cluster),
- host("host4", resources(2), 3, "7.2", cluster),
+ return List.of(host("host2", resources(2), 2, "7.2", cluster),
+ host("host3", resources(2), 3, "7.2", cluster),
host("host4", resources(2), 4, "7.2", cluster));
} else {
throw new RuntimeException("Unexpected third invocation");