more detail on test failures in elasticstack

This commit is contained in:
Adrian Cole 2011-06-02 12:59:57 -07:00
parent e49e0254ce
commit 34bbfa3797
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }
} }