Fix use correct method call in test

This commit is contained in:
Ruben Dijkstra 2014-10-02 00:37:40 +02:00
parent de8b414060
commit b1d3c0c214

View File

@ -43,12 +43,12 @@ public class DefaultQueryMetadataTest {
@Test
public void AddHaving_With_Null() {
metadata.addWhere((Predicate)null);
metadata.addHaving((Predicate)null);
}
@Test
public void AddHaving_With_BooleanBuilder() {
metadata.addWhere(new BooleanBuilder());
metadata.addHaving(new BooleanBuilder());
}