> +
> +    try {
> +      NovaApi novaApi = api(server.getUrl("/").toString(), "openstack-nova");
> +      ImageApi imageApi = novaApi.getImageApiForZone("RegionOne");
> +
> +      FluentIterable<? extends Image> images = 
> imageApi.listInDetail().concat();
> +
> +      Image img = images.get(0);
> +      assertNotNull(img.getMetadata());
> +      assertEquals(11, img.getMetadata().size());
> +      assertNotNull(img.getMetadata().get("block_device_mapping"));
> +    } finally {
> +      server.shutdown();
> +    }
> +  }
> +}

This "no new line at end of file" is a checkstyle violation that Jenkins is not 
able to properly report. Just FYI

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

Reply via email to