better error on gogrid test

This commit is contained in:
Adrian Cole 2011-07-25 10:47:35 -07:00
parent edc1b10610
commit a2bdfdb706
1 changed files with 1 additions and 1 deletions

View File

@ -43,6 +43,6 @@ public class GoGridComputeServiceLiveTest extends BaseComputeServiceLiveTest {
protected void checkResponseEqualsHostname(ExecResponse execResponse, NodeMetadata node1) {
// hostname is not completely predictable based on node metadata
assert execResponse.getOutput().trim().startsWith(node1.getName());
assert execResponse.getOutput().trim().startsWith(node1.getName()) : execResponse + ": " + node1;
}
}