trevorflanagan commented on this pull request.
> assertNotNull(cloneImageId);
assertTrue(serverNormalPredicate.apply(serverId), "server was not NORMAL
after timeout");
}
+ @Test(dependsOnMethods = "testCloneServerToMakeCustomerImage")
+ public void testListCustomerImages() {
+ FluentIterable<CustomerImage> customerImages =
api.getServerImageApi().listCustomerImages().concat();
+ assertNotNull(customerImages);
+ customerImages.anyMatch(new Predicate<CustomerImage>() {
Thanks for spotting that one! Not much point in having the predicate without
the assertion.
--
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/446#discussion_r226566609