> +      LoadBalancer updateResult = 
> loadBalancerApi().update(currentLoadBalancer.id(), 
> LoadBalancer.UpdateLoadBalancer.builder()
> +              .name(updatedName)
> +              .description("description")
> +              .healthCheckInterval(40)
> +              .healthCheckTest(Types.HealthCheckTestTypes.TCP)
> +              .method(Types.LoadBalancerMethod.ROUND_ROBIN)
> +              .persistence(Boolean.TRUE)
> +              .persistenceTime(1200)
> +              .build());
> +
> +      assertNotNull(updateResult);
> +      assertEquals(updateResult.name(), updatedName);
> +
> +   }
> +
> +   @Test(dependsOnMethods = "testUpdate")

Could it just depend on the get test too, top maximize the chances it gets 
executed if other tests fail?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/307/files/915aa395f4fe7805f8c6fe7f0e333184935eb43c#r74426128

Reply via email to