> +
> + private void deleteIp() throws InterruptedException {
> + assertNodeAvailable(currentServer);
> +
> + Server response = serverApi().deleteIp(currentServer.id(),
> currentIP.id());
> +
> + assertNotNull(response);
> + }
> +
> + @Test(dependsOnMethods = "testAddIp")
> + public void testListips() throws InterruptedException {
> + List<ServerIp> ips = serverApi().listIps(currentServer.id());
> + currentIP = ips.get(0);
> + assertNotNull(ips);
> + assertFalse(ips.isEmpty());
> + Assert.assertTrue(ips.size() > 0);
Remove redundant assertions.
---
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-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68671325