HHH-15453 Fix test failure on Oracle

This commit is contained in:
Andrea Boriero 2022-08-25 11:16:10 +02:00
parent c1e5207d64
commit c612790118
1 changed files with 0 additions and 3 deletions

View File

@ -93,8 +93,6 @@ public class EmbeddableWithManyToManyTest {
@Embeddable
public static class Users {
private Integer initial;
@ManyToMany(cascade = { CascadeType.PERSIST, CascadeType.MERGE })
private Set<User> users;
@ -103,7 +101,6 @@ public class EmbeddableWithManyToManyTest {
public Users(User... users) {
this.users = Arrays.stream( users ).collect( Collectors.toSet() );
initial = users.length;
}
public Set<User> getUsers() {