> +
> +   @Test(dependsOnMethods = "testGetKey")
> +   public void testDeleteKey() {
> +      Key deletedKey = api().deleteKey(key);
> +      assertNotNull(deletedKey);
> +      assertTrue(deletedKey.action().equals("delete"));
> +      assertTrue(deletedKey.prevNode().value().equals(value));
> +   }
> +
> +   @Test(dependsOnMethods = "testDeleteKey")
> +   public void testGetNonExistentKey() {
> +      Key deletedKey = api().getKey(key);
> +      assertNull(deletedKey);
> +   }
> +
> +   @Test(dependsOnMethods = "testGetNonExistentKey")

Same here. There's no need to depend on any test.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/234/files#r52989015

Reply via email to