> + ))
> + .build();
> +
> + checkTag(editedTag, api.editTag(createdTag.getUuid(), editedTag));
> + }
> +
> + @Test(dependsOnMethods = {"testEditTag"})
> + public void testDeleteTag() throws Exception{
> + api.deleteTag(createdTag.getUuid());
> + }
> +
> + @Test(dependsOnMethods = {"testCreateTags"})
> + public void testDeleteTags() throws Exception{
> + for(Tag tag : createdTags){
> + api.deleteTag(tag.getUuid());
> + }
Yep :) just uncommented these tests that were commented due to a server side
issue. Will review and add the proper assertions in all of them.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/38/files#r7793639