HHH-12958 : NotFoundLogicalOneToOneTest fails on Oracle due to identifiers that are too long (5.1)

This commit is contained in:
Gail Badner 2018-09-05 12:56:05 -07:00
parent 409293b7bc
commit 43e4175b22
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public class NotFoundLogicalOneToOneTest extends BaseCoreFunctionalTestCase {
return new Class[] { Coin.class, Currency.class };
}
@Entity
@Entity(name = "Coin")
public static class Coin {
private Integer id;
private String name;
@ -108,7 +108,7 @@ public class NotFoundLogicalOneToOneTest extends BaseCoreFunctionalTestCase {
}
}
@Entity
@Entity(name = "Currency")
public static class Currency implements Serializable {
private Integer id;
private String name;