>     }
>  
>     @Test
>     public void testIdManyPrices() {
>        ProductItemPrice price1 = ProductItemPrice.builder().id(1234).build();
>        ProductItemPrice price2 = ProductItemPrice.builder().id(5678).build();
> -      ProductItem item = 
> ProductItem.builder().prices(ImmutableSet.of(price1,price2)).build();
> -      assertEquals("1234",imageId().apply(item));
> +      ProductItem item = 
> ProductItem.builder().id(1234).prices(ImmutableSet.of(price1,price2)).build();
> +      assertEquals("Expected the ID of the ProductItemPrice to be returned", 
> "1234",imageId().apply(item));

Indeed. I think [I 
linked](https://github.com/jclouds/jclouds/pull/77/files#r6902366) to that 
Assert version, as far as I can see...

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

Reply via email to