HHH-16768 - Switch JoinResultTests from random to fixed UUID to avoid problems with Sybase
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
parent
935ac494dd
commit
9e4a56c651
|
@ -121,7 +121,7 @@ public class JoinResultTests {
|
|||
void createTestData(SessionFactoryScope scope) {
|
||||
scope.inTransaction( (session) -> {
|
||||
final Vendor vendor = new Vendor( 1, "ACME", "acme", "Some notes" );
|
||||
final Product product = new Product( 1, UUID.randomUUID(), vendor );
|
||||
final Product product = new Product( 1, UUID.fromString( "53886a8a-7082-4879-b430-25cb94415be8" ), vendor );
|
||||
session.persist( vendor );
|
||||
session.persist( product );
|
||||
} );
|
||||
|
|
Loading…
Reference in New Issue