> @@ -133,7 +134,7 @@ public void testSetTagsOnVirtualGuest() throws Exception {
> Set<TagReference> tagReferences = found.getTagReferences();
> assertNotNull(tagReferences);
> for (String tag : tags) {
> - Iterables.contains(tagReferences, tag);
> + assertThat(Iterables.contains(tagReferences, tag)).isTrue();
This is due to Guava 20 introducing annotating new methods which error-prone
catches.
---
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/pull/982/files/de6171ce5d7c55b8733bbbfc3e7606a0739f2dad#r70562697