> + )) > + .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()); > + }
See above comment --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/38/files#r7792761