Update test

This commit is contained in:
Timo Westkämper 2014-09-25 17:35:12 +03:00
parent 3208ac46c2
commit 40206e13a8

View File

@ -710,15 +710,8 @@ public abstract class AbstractJPATest {
}
@Test
public void In8() {
assertEquals(0, query().from(cat).where(cat.name.in(ImmutableList.<String>of())).count());
}
@Test
@IncludeIn(Target.H2)
@NoBatooJPA
public void In_Empty() {
query().from(cat).where(cat.name.in(Collections.<String>emptyList())).count();
assertEquals(0, query().from(cat).where(cat.name.in(ImmutableList.<String>of())).count());
}
@Test