>     public void testIdMissingPrices() {
>        ProductItem item = ProductItem.builder().build();
> -      imageId().apply(item);
> +      assertEquals(item.getId() + "", imageId().apply(item));

Since we know what `item.getId()` is, could we just have
```
 assertEquals("", imageId().apply(item));
```
here?

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

Reply via email to