> + new Tag.Builder()
> + .name("Cloudsigma2 New tag")
> + .meta(new HashMap<String, String>())
> + .build()
> + , new Tag.Builder()
> + .name("Cloudsigma2 tag with resource")
> + .meta(new HashMap<String, String>())
> + .resources(ImmutableList.of(
> + new TagResource.Builder()
> + .uuid(createdDrive.getUuid())
> + .build()
> + ))
> + .build());
> +
> + createdTags = api.createTags(newTagsList);
> + Assert.assertEquals(newTagsList.size(), createdTags.size());
Static import? And which is "actual", which is "expected" here? TestNG uses
`assertEquals(actual, expected)`, so I suspect this might be the wrong way
around..?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/38/files#r7792725