> + String imageId = img.getId();
> +
> + templateBuilder.imageId(imageId);
> + templateBuilder.hardwareId("Standard_A5");
> + templateBuilder.locationId("westus");
> + final Template template2 = templateBuilder.build();
> +
> + try {
> + nodes = view.getComputeService().createNodesInGroup(groupName, 1,
> template2);
> + } finally {
> + assertThat(nodes).hasSize(1);
> + view.getComputeService().destroyNodesMatching(inGroup(groupName));
> + }
> + assertNotNull(img);
> +
> + }
Remove this test. This should be already covered in the base class.
---
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/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67890024