HHH-11580 - Fix test failure

This commit is contained in:
Andrea Boriero 2017-03-22 13:34:25 +00:00
parent c25757275b
commit 61612ca540
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import javax.persistence.Entity;
import javax.persistence.EntityManager;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.envers.Audited;
@ -99,6 +100,7 @@ public class DeleteCollectionJtaSessionClosedBeforeCommitTest extends BaseEnvers
@Audited
@Entity
@Table(name = "ENTITY")
public static class TestEntity {
@Id
private Integer id;
@ -151,6 +153,7 @@ public class DeleteCollectionJtaSessionClosedBeforeCommitTest extends BaseEnvers
@Audited
@Entity
@Table(name = "O_ENTITY")
public static class OtherTestEntity {
@Id