> @@ -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();
Inspecting this further, this test always failed due to `tagReferences` having
a different type than `tag`. I have corrected it.
---
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#r70564224