mirror of https://github.com/apache/jclouds.git
more detail on test failures in elasticstack
This commit is contained in:
parent
e49e0254ce
commit
34bbfa3797
|
@ -159,8 +159,8 @@ public class ElasticStackClientLiveTest {
|
||||||
@Test
|
@Test
|
||||||
public void testGetDrive() throws Exception {
|
public void testGetDrive() throws Exception {
|
||||||
for (String driveUUID : client.listDrives()) {
|
for (String driveUUID : client.listDrives()) {
|
||||||
assert !"".equals(driveUUID);
|
assert !"".equals(driveUUID) : driveUUID;
|
||||||
assertNotNull(client.getDriveInfo(driveUUID));
|
assert client.getDriveInfo(driveUUID) != null : driveUUID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue