> @@ -572,7 +584,13 @@ public boolean apply(NodeMetadata input) {
>  
>        }) : stoppedNodes;
>  
> -      client.resumeNodesMatching(inGroup(group));
> +      Set<? extends NodeMetadata> resumedNodes = 
> client.resumeNodesMatching(inGroup(group));
> +      for (ComputeMetadata node : resumedNodes) {
> +          assert node.getProviderId() != null : node;
> +          assert node.getLocation() != null : node;
> +          assertEquals(node.getType(), ComputeType.NODE);

Please fix indents and use assertNotNull

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/419/files#r14141565

Reply via email to