> + .dataCenterId(testNic.dataCenterId())
> + .serverId(testServer.id())
> + .id(testNic.id())
> + .name("apache-nic")
> + .build());
> +
> + assertNicAvailable(testNic);
> +
> + Nic nic = nicApi().getNic(dataCenter.id(), testServer.id(),
> testNic.id());
> +
> + assertEquals(nic.properties().name(), "apache-nic");
> + }
> +
> +
> + @Test(dependsOnMethods = "testUpdateNic")
> + public void testDeleteNic() {
We should be able to test this even if the update test fails.
---
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/249/files/a17eac2160481358b8735aab30ecf12d672b341b#r56996018