> @@ -132,11 +138,55 @@ public void testDescribeImages() { > } > > @Test > + public void testDescribeImagesWithFilter() { > + // Just run in the first region - no need to take the time on all of > them. > + String region = getFirst(ec2Api.getConfiguredRegions(), null); > + if (region != null) { > + Set<? extends Image> allResults = > client.describeImagesInRegion(region); > + assertNotNull(allResults); > + assert allResults.size() >= 2 : allResults.size(); > + Iterator<? extends Image> iterator = allResults.iterator();
[minor] inline here and below? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/194/files#r7486409