Hi,
I'm getting the different result when upgraded to 1.4.198 version. While 
till 1.4.188 the results are expected works correctly.

The below test fetch data for Id:1 having list of two members, the sequence 
of member Id's in list is 3, 2. But which is 2, 3 in 1.4.198 that's why the 
tests are failing. There are 200 similar test cases which are failing with 
this reason.

List<Addr> memberAddr = _addrRepository.findmemberAddr(1, new 
SearchParams(), addrSearchParams);

    Assert.assertThat(memberAddr.isEmpty(), is(not(true)));
    Assert.assertThat(memberAddr.size(), is(2));
    Assert.assertThat(memberAddr.get(0).getMemberId(), is(3L));
    Assert.assertThat(memberAddr.get(1).getMemberId(), is(2L));

Please help.

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/d293a818-0bfa-4d7f-8115-425aad2c5306%40googlegroups.com.

Reply via email to