Skip to content

Commit 719b0d8

Browse files
Fix integration test
1 parent b8130fa commit 719b0d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

multiapps-controller-client/src/test/java/org/cloudfoundry/multiapps/controller/client/facade/ApplicationsCloudControllerClientIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,12 @@ void updateApplicationHealthcheckType() {
171171
.healthCheck(
172172
org.cloudfoundry.client.v3.processes.HealthCheck.builder()
173173
.type(
174-
HealthCheckType.NONE)
174+
HealthCheckType.PROCESS)
175175
.build())
176176
.build())
177177
.block();
178178
CloudProcess cloudProcess = client.getApplicationProcess(applicationGuid);
179-
assertEquals(org.cloudfoundry.multiapps.controller.client.facade.domain.HealthCheckType.NONE,
179+
assertEquals(org.cloudfoundry.multiapps.controller.client.facade.domain.HealthCheckType.PROCESS,
180180
cloudProcess.getHealthCheckType());
181181
} catch (Exception e) {
182182
fail(e);

0 commit comments

Comments
 (0)