HHH-10652 - The HHH-10631 test makes wrong assertion

This commit is contained in:
Zhenlei Huang 2016-03-29 10:09:03 +08:00 committed by Vlad Mihalcea
parent 3d04839825
commit 7c75a92db4
1 changed files with 2 additions and 0 deletions

View File

@ -270,8 +270,10 @@ public class CollectionCacheEvictionTest extends BaseCoreFunctionalTestCase {
s = openSession();
company1 = (Company) s.get( Company.class, 1 );
company2 = (Company) s.get( Company.class, 2 );
assertEquals( 0, company1.getUsers().size() );
assertEquals( 0, company2.getUsers().size() );
s.close();
}