HHH-11580 - Fix test failure
This commit is contained in:
parent
c25757275b
commit
61612ca540
|
@ -15,6 +15,7 @@ import javax.persistence.Entity;
|
||||||
import javax.persistence.EntityManager;
|
import javax.persistence.EntityManager;
|
||||||
import javax.persistence.Id;
|
import javax.persistence.Id;
|
||||||
import javax.persistence.OneToMany;
|
import javax.persistence.OneToMany;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
import org.hibernate.cfg.AvailableSettings;
|
import org.hibernate.cfg.AvailableSettings;
|
||||||
import org.hibernate.envers.Audited;
|
import org.hibernate.envers.Audited;
|
||||||
|
@ -99,6 +100,7 @@ public class DeleteCollectionJtaSessionClosedBeforeCommitTest extends BaseEnvers
|
||||||
|
|
||||||
@Audited
|
@Audited
|
||||||
@Entity
|
@Entity
|
||||||
|
@Table(name = "ENTITY")
|
||||||
public static class TestEntity {
|
public static class TestEntity {
|
||||||
@Id
|
@Id
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
@ -151,6 +153,7 @@ public class DeleteCollectionJtaSessionClosedBeforeCommitTest extends BaseEnvers
|
||||||
|
|
||||||
@Audited
|
@Audited
|
||||||
@Entity
|
@Entity
|
||||||
|
@Table(name = "O_ENTITY")
|
||||||
public static class OtherTestEntity {
|
public static class OtherTestEntity {
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
|
|
Loading…
Reference in New Issue