> }
>
> @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));
@andreaturli yes i think you're right: the `org.testng.Assert` assert methods
are the preferred ones, not `AssertJUnit`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/77/files#r6910423