DATACOUCH-40 - Make ClusterInfo more reliable on the values returned.

This commit is contained in:
Michael Nitschinger
2013-10-16 13:05:11 +02:00
parent 47a0125642
commit 694b67ae36
2 changed files with 25 additions and 7 deletions

View File

@@ -49,8 +49,8 @@ public class ClusterInfoTests {
}
@Test
public void totalRAMAssigned() {
assertThat(ci.getTotalRAMAssigned(), greaterThan(0L));
public void totalDiskAssigned() {
assertThat(ci.getTotalDiskAssigned(), greaterThan(0L));
}
@Test