Skip to content

Commit

Permalink
Fix some tests failing for older DBs
Browse files Browse the repository at this point in the history
  • Loading branch information
mbladel committed Apr 26, 2023
1 parent 23046ad commit 3f1b1f4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -78,7 +78,7 @@ public void setState(T state) {
}
}

@Entity
@Entity(name="TestEntity")
public static class TestEntity extends GenericBaseEntity<TestEnum> {

@Id
Expand All @@ -93,7 +93,7 @@ public TestEntity(long id) {

}

@Entity
@Entity(name="AnotherTestEntity")
public static class AnotherTestEntity extends GenericBaseEntity<AnotherTestEnum> {

@Id
Expand Down
Expand Up @@ -67,7 +67,7 @@ public void setState(T state) {
}
}

@Entity
@Entity(name="TestEntity")
public static class TestEntity extends GenericBaseEntity<TestEnum> {

@Id
Expand Down
Expand Up @@ -78,7 +78,7 @@ public void setState(T state) {
}
}

@Entity
@Entity(name="TestEntity")
public static class TestEntity extends GenericBaseEntity<TestEnum> {

@Id
Expand All @@ -93,7 +93,7 @@ public TestEntity(long id) {

}

@Entity
@Entity(name="AnotherTestEntity")
public static class AnotherTestEntity extends GenericBaseEntity<AnotherTestEnum> {

@Id
Expand Down

0 comments on commit 3f1b1f4

Please sign in to comment.