mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-06 09:49:53 +00:00
HHH-11580 - Fix test failure
This commit is contained in:
parent
c25757275b
commit
61612ca540
@ -15,6 +15,7 @@
|
||||
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 void testRevisionHistory() {
|
||||
|
||||
@Audited
|
||||
@Entity
|
||||
@Table(name = "ENTITY")
|
||||
public static class TestEntity {
|
||||
@Id
|
||||
private Integer id;
|
||||
@ -151,6 +153,7 @@ public int hashCode() {
|
||||
|
||||
@Audited
|
||||
@Entity
|
||||
@Table(name = "O_ENTITY")
|
||||
public static class OtherTestEntity {
|
||||
|
||||
@Id
|
||||
|
Loading…
x
Reference in New Issue
Block a user