Skip to content

Commit

Permalink
HHH-11580 - Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 committed Mar 22, 2017
1 parent c257572 commit 61612ca
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -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;
Expand Down Expand Up @@ -99,6 +100,7 @@ public void testRevisionHistory() {

@Audited
@Entity
@Table(name = "ENTITY")
public static class TestEntity {
@Id
private Integer id;
Expand Down Expand Up @@ -151,6 +153,7 @@ public int hashCode() {

@Audited
@Entity
@Table(name = "O_ENTITY")
public static class OtherTestEntity {

@Id
Expand Down

0 comments on commit 61612ca

Please sign in to comment.