vcloud does set hostname

This commit is contained in:
Adrian Cole 2012-01-15 15:31:22 -08:00
parent 15af98ba02
commit db271da687
1 changed files with 0 additions and 7 deletions

View File

@ -18,8 +18,6 @@
*/
package org.jclouds.bluelock.vcloud.zone01.compute;
import org.jclouds.compute.domain.ExecResponse;
import org.jclouds.compute.domain.NodeMetadata;
import org.jclouds.vcloud.compute.VCloudComputeServiceLiveTest;
import org.testng.annotations.Test;
@ -33,10 +31,5 @@ public class BluelockVCloudZone01ComputeServiceLiveTest extends VCloudComputeSer
public BluelockVCloudZone01ComputeServiceLiveTest() {
provider = "bluelock-vcloud-zone01";
}
protected void checkResponseEqualsHostname(ExecResponse execResponse, NodeMetadata node1) {
// hostname is not completely predictable based on node metadata
assert execResponse.getOutput().trim().equals("Ubuntu1004") : execResponse + ": " + node1;
}
}